Skip to content

Instantly share code, notes, and snippets.

@phillcoxon
Created October 16, 2015 04:05
Show Gist options
  • Select an option

  • Save phillcoxon/bd8ac321348bea0322d6 to your computer and use it in GitHub Desktop.

Select an option

Save phillcoxon/bd8ac321348bea0322d6 to your computer and use it in GitHub Desktop.
WordPress debug script (put in wp-config.php)
define( 'WP_DEBUG', true );
if ( WP_DEBUG ) {
define ('JETPACK_DEV_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'SCRIPT_DEBUG', true );
if ( defined( 'DOING_AJAX' ) && DOING_AJAX || defined( 'DOING_CRON' ) && DOING_CRON ) {
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
} else {
define( 'WP_DEBUG_DISPLAY', true );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment