Skip to content

Instantly share code, notes, and snippets.

@brianjking
Forked from jjeaton/wp-config.php
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianjking/47d1516c92038b75781a to your computer and use it in GitHub Desktop.
Save brianjking/47d1516c92038b75781a to your computer and use it in GitHub Desktop.
WP_DEBUG in wp-config.php using debug.log
<?php
// Debug Settings
define( 'WP_DEBUG', true );
if ( WP_DEBUG ) {
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
define( 'SAVEQUERIES', true );
define( 'SCRIPT_DEBUG', true );
@ini_set( 'display_errors',0 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment