Search
 
SCRIPT & CODE EXAMPLE
 

PHP

hide wordpress error

/* provided by joshiyogesh0333@gmail.com */
/* 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);
Comment

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
Comment

PREVIOUS NEXT
Code Example
Php :: create laravel project specific version 
Php :: woocommerce get my account url 
Php :: php remove cookie 
Php :: php strict-origin-when-cross-origin 
Php :: php replace space with 20 
Php :: index.php wordpress 
Php :: how to populate dropdown list with array values in php 
Php :: ucfirst() php 
Php :: install php mysql extension ubuntu 
Php :: laravel blade uppercase 
Php :: composer stripe 
Php :: mac use php@7.4 
Php :: php average from array 
Php :: php remove after character 
Php :: php 3 digit decimal 
Php :: how to get the index in foreach loop in laravel 
Php :: php string to array 
Php :: wordpress get archive title 
Php :: array_unique 
Php :: laravel old request hmtl select 
Php :: php curl delete request 
Php :: Where is the php.ini file on a Linux/CentOS 
Php :: laravel validation time hours minutes format 
Php :: remove add media button wordpress editor 
Php :: select case default php 
Php :: php model last record 
Php :: laravel find or fail exception 
Php :: php yesterday date 
Php :: Carbon add 3 hours 
Php :: php decode html special characters 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =