Skip to content

Instantly share code, notes, and snippets.

@jaredatch
Created October 3, 2012 20:26
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 jaredatch/3829628 to your computer and use it in GitHub Desktop.
Save jaredatch/3829628 to your computer and use it in GitHub Desktop.
Suppress debug info to Debug Bar only
<?php
/**
* Suppress debug warnings and notices to the debug bar.
* Place the follow lines in your wp-config.
*
* Install the Debug Bar - http://wordpress.org/extend/plugins/debug-bar/
*
* Other recommended Debug Bar add-ons:
* http://wordpress.org/extend/plugins/debug-bar-cron/
* http://wordpress.org/extend/plugins/tdd-debug-bar-post-meta/
* http://wordpress.org/extend/plugins/debug-bar-transients/
* http://wordpress.org/extend/plugins/debug-bar-query-tracer/
* http://wordpress.org/extend/plugins/debug-bar-template-trace/
*/
define('WP_DEBUG', true);
define('WP_DEBUG_DISPLAY', false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment