How can I stop PHP notices from appearing in wordpress?

后端 未结 6 1127
后悔当初
后悔当初 2020-12-05 04:35

I know about error_reporting(0);, and ini_set(\'display_errors\', false);, but there is a notice appearing in wordpress:

Not

6条回答
  •  无人及你
    2020-12-05 05:26

    You need to edit your:

    wp-config.php
    

    file and modify the following here:

    error_reporting(0);
    @ini_set('display_errors', 0);
    

    otherwise Wordpress overwrites the ALERTS set by PHP.INI

提交回复
热议问题