Answers for "display error on wp"

2

display wordpress error

/* provided by [email protected] */
/* add in config file  */
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', true );
define( 'SCRIPT_DEBUG', true );
define( 'SAVEQUERIES', true );

/* add in function.php file  */

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
Posted by: Guest on March-03-2021

Browse Popular Code Answers by Language