Skip to content

Instantly share code, notes, and snippets.

@jahid32
Last active June 13, 2019 11:04
Show Gist options
  • Save jahid32/c44f34628ac5904d637ffb4de4231f70 to your computer and use it in GitHub Desktop.
Save jahid32/c44f34628ac5904d637ffb4de4231f70 to your computer and use it in GitHub Desktop.
WordPress Debug log
if (!function_exists('write_log')) {
function write_log ( $log ) {
if ( true === WP_DEBUG ) {
if ( is_array( $log ) || is_object( $log ) ) {
error_log( print_r( $log, true ) );
} else {
error_log( $log );
}
}
}
}
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment