Created
January 7, 2017 16:06
-
-
Save topdown/e2ba6c6c7a2444826a25d5f6d025a587 to your computer and use it in GitHub Desktop.
For public debugging logs to file in wp_content
This file contains 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
//For public debugging logs to file in wp_content | |
//add the following to your wp-config.php by the bottom of the file where is says /* That's all, stop editing! Happy blogging. */ | |
define('WP_DEBUG', true); | |
define('WP_DEBUG_DISPLAY', false); | |
define('WP_DEBUG_LOG', true); | |
define('SCRIPT_DEBUG', true); | |
define('JETPACK_DEV_DEBUG', true); | |
define( 'SAVEQUERIES', true ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment