Skip to content

Instantly share code, notes, and snippets.

@cesgarma
Created February 1, 2022 21:43
Show Gist options
  • Save cesgarma/74c00292795fc737d04e30026b8d5117 to your computer and use it in GitHub Desktop.
Save cesgarma/74c00292795fc737d04e30026b8d5117 to your computer and use it in GitHub Desktop.
WordPress PHP write log functionality for debugging purposes
if ( ! function_exists('write_log')) {
function write_log ( $log ) {
if ( is_array( $log ) || is_object( $log ) ) {
error_log( print_r( $log, true ) );
} else {
error_log( $log );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment