Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
If you work in WordPress and need a way to enable debug more on it with a certain page to can get information about something wrong easily, all you need to add a PHP constant to the wp-config.php file.
WP_DEBUG is a PHP constant add to WordPress since Version 2.3.1 and has the boolean value true or false.
This code snippet will let you enable or disable debug mode with simple steps
Steps to enable/disable:
if ( isset($_GET['debug']) && $_GET['debug'] == 'debug') define('WP_DEBUG', true);
Get Parameter to URL like:
https://www.zytheme.com/?debug=debug