Skip to content

Instantly share code, notes, and snippets.

@topdown
Created January 7, 2017 16:06
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 topdown/e2ba6c6c7a2444826a25d5f6d025a587 to your computer and use it in GitHub Desktop.
Save topdown/e2ba6c6c7a2444826a25d5f6d025a587 to your computer and use it in GitHub Desktop.
For public debugging logs to file in wp_content
//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