Skip to content

Instantly share code, notes, and snippets.

@corazzi
Last active November 15, 2017 06:20
Show Gist options
  • Save corazzi/f502a49bd10e5f7655b6a02b78d07f67 to your computer and use it in GitHub Desktop.
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
<?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