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 :: get data in orderby in laravel 
Php :: string to uppercase laravel 
Php :: wp revisions 0 
Php :: laravel insert or ignore 
Php :: install phpmyadmin ubuntu 
Php :: codeigniter get where 
Php :: define home url wp 
Php :: remove add media button wordpress editor 
Php :: php max_execution_time 
Php :: wordpress get fiture image 
Php :: php get hostname 
Php :: htaccess cakephp 
Php :: php find differences between two arrays 
Php :: convert space to 20 php 
Php :: laravel time format 
Php :: convert base64 string to pdf in php 
Php :: php echo alert js 
Php :: laravel print request data 
Php :: php strtotime 1 day ago from 
Php :: htaccess replace url parameter with slash prameter 
Php :: switch between php version ubuntu nginx 
Php :: General error: 1215 Cannot add foreign key constraint laravel 
Php :: echo first 100 prime numbers php 
Php :: symfony get current datetime 
Php :: php remove all but numbers 
Php :: wordpress logout redirect to home 
Php :: wordpress define constant if not defined 
Php :: laravel eloquent multiple primary key 
Php :: laravel group by created_at date only 
Php :: redirect back in laravel livewire 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =