How can I stop PHP notices from appearing in wordpress?

后端 未结 6 1130
后悔当初
后悔当初 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:25

    Most of the time these are nothing to worry about (though the plugin/theme developer should know about these so that they may fix them in a future release). PHP warnings and notices are nothing to worry about on a production site most of the time. Some of these can even be generated because the developer has to keep compatibility with older versions of WordPress as well as older PHP versions.

    define('WP_DEBUG', false);
    

    with this

    ini_set('log_errors','On');
    ini_set('display_errors','Off');
    ini_set('error_reporting', E_ALL );
    define('WP_DEBUG', false);
    define('WP_DEBUG_LOG', true);
    define('WP_DEBUG_DISPLAY', false);
    

    If you simply set WP_DEBUG to false in your wp-config.php file you should be fine. These don’t affect your site in any way.

    However, the problem is that some times the above does not work. That can happen most times on cheap shared hosts that force displaying PHP warnings and notices. In that case, you can replace this line from your wp-config.php file:

提交回复
热议问题