Tuesday, 2 May 2023

How to hide PHP Warnings and Notices in WordPress

 Add the below line in wp-config.php

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

No comments:

Post a Comment