Knowledgebase: Wordpress
How To Enable WordPress Debugging
If you are attempting to debug an issue on your WordPress installation, it will be very useful to enable the debugging to get a deeper look into any errors which may be getting thrown.  By default, WordPress is not enabled to display or log errors.  Debugging can be turned on by setting a few options in the wp-config.php file.
 
To enable debugging, open your wp-config.php file and find:
define('WP_DEBUG', false);
Change this line to:
define('WP_DEBUG', true);

This will allow WordPress to display errors to the screen as they occur.


Comments (0)