Skip to content

Instantly share code, notes, and snippets.

@ashwebstudio
Created January 28, 2023 18:36
Embed
What would you like to do?
WordPress log function
function _log( $message, $pre = '' ) {
if ( true === WP_DEBUG && !defined( 'DOING_CRON' ) && !defined( 'DOING_AJAX' ) ) {
if ( $pre ) {
error_log( $pre );
}
if ( is_array( $message ) || is_object( $message ) ){
error_log( print_r( $message, true ) );
} else {
error_log( $message );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment