Introduction
When facing issues on a Wordpress site, it may be helpful to enable debug mode. This will provide more verbose logging.
Procedure
In your wp-config.php file in your WordPress installation directory, find the following line.
define('WP_DEBUG', false);
Alter it to be "true" like below:
define('WP_DEBUG', true);
Comments
0 comments
Article is closed for comments.