How to Enable WordPress Debug Mode (WP_DEBUG)
To enable debug mode:
- OpenĀ
wp-config.php - Find the line:
define('WP_DEBUG', false); - Change it to:
define('WP_DEBUG', true);
This helps identify errors during troubleshooting.
To enable debug mode:
wp-config.phpdefine('WP_DEBUG', false);define('WP_DEBUG', true);This helps identify errors during troubleshooting.