Display Wordpress Error

[Solved] Display Wordpress Error | Php - Code Explorer | yomemimo.com
Question : display wordpress error

Answered by : yogesh-joshi

/* 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);

Source : | Last Update : Wed, 10 Mar 21

Answers related to display wordpress error

Code Explorer Popular Question For Php