Skip to content

Instantly share code, notes, and snippets.

@andrewlaskey
Created May 22, 2015 17:39
Show Gist options
  • Save andrewlaskey/eb18581c71e631ed6b9d to your computer and use it in GitHub Desktop.
Save andrewlaskey/eb18581c71e631ed6b9d to your computer and use it in GitHub Desktop.
Wordpress write to log function
<?php
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 );
}
}
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment