Created
March 6, 2014 03:26
-
-
Save ksemel/9381712 to your computer and use it in GitHub Desktop.
How do I enable WordPress Debugging?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| How do I enable WordPress Debugging? | |
| In order to enable debugging in WordPress, you will need to add a small code snippet to your wp-config.php file. | |
| This code will prevent error messages from appearing on-screen and instead log them to the /wp-content/debug.log. | |
| /* Switch this value between true and false to enable and disable debugging */ | |
| define('WP_DEBUG', true); | |
| /* This will log all errors notices and warnings to a file called debug.log in wp-content only when WP_DEBUG is true */ | |
| if (WP_DEBUG) { | |
| define('WP_DEBUG_LOG', true); | |
| define('WP_DEBUG_DISPLAY', false); | |
| @ini_set('display_errors', 0); | |
| @ini_set('error_reporting', E_ALL & ~E_NOTICE ); | |
| @error_reporting(E_ALL & ~E_NOTICE); | |
| } | |
| Please see the WordPress Codex entry on this topic for more information. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment