display errors php wordpress code example

Example 1: 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);

Example 2: hide wordpress errors

ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_DISPLAY', false);

#https://www.fiverr.com/tamerjarrar

Tags:

Misc Example