Last active
November 15, 2017 06:20
-
-
Save corazzi/f502a49bd10e5f7655b6a02b78d07f67 to your computer and use it in GitHub Desktop.
Quick way of turning all of the debugging options on or off in wp-config.php
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
<?php | |
// [...]wp-config.php contents[...] | |
define('DEBUGGING_ON', false); | |
define('WP_DEBUG', DEBUGGING_ON); | |
define('WP_DEBUG_LOG', DEBUGGING_ON); | |
define('WP_DEBUG_DISPLAY', DEBUGGING_ON); | |
@ini_set('display_errors', DEBUGGING_ON); | |
// [...]wp-config.php contents[...] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment