Skip to content

Instantly share code, notes, and snippets.

@kenng
Created February 7, 2015 05:41
Show Gist options
  • Save kenng/11de2421bda2480758f1 to your computer and use it in GitHub Desktop.
Save kenng/11de2421bda2480758f1 to your computer and use it in GitHub Desktop.
//WP-CONFIG.PHP
// Turns WordPress debugging on
define('WP_DEBUG', true);
// Tells WordPress to log everything to the /wp-content/debug.log file
define('WP_DEBUG_LOG', true);
// Doesn't force the PHP 'display_errors' variable to be on
define('WP_DEBUG_DISPLAY', false);
// Hides errors from being displayed on-screen
@ini_set('display_errors', 0);
//FUNCTIONS.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