Answers for "wordpress hide php notice"

PHP
1

hide wordpress error

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

/* add in function.php file  */

ini_set('display_errors', 0);
ini_set('display_startup_errors', 0);
error_reporting(0);
Posted by: Guest on March-24-2021
0

php hide notice

<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
Posted by: Guest on November-15-2021

Browse Popular Code Answers by Language