Skip to content

Instantly share code, notes, and snippets.

@WraithKenny
Created June 15, 2012 17:01
Show Gist options
  • Save WraithKenny/2937582 to your computer and use it in GitHub Desktop.
Save WraithKenny/2937582 to your computer and use it in GitHub Desktop.
WP_DEBUG switch
define ( 'WP_DEBUG', false );
if ( WP_DEBUG ) {
define( 'WP_DEBUG_DISPLAY', false );
ini_set( 'display_errors', 1 ); // the above doesn't set this for you.
define( 'WP_DEBUG_LOG', true );
define( 'SCRIPT_DEBUG', true );
define( 'CONCATENATE_SCRIPTS', false );
define( 'COMPRESS_SCRIPTS', false );
define( 'COMPRESS_CSS', false );
define( 'ENFORCE_GZIP', false );
define( 'SAVEQUERIES', true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment