如何将错误报告更改为只在WordPress中显示错误?

时间:2022-02-08 作者:TheKidsWantDjent

我在一个开发网站上工作,该网站有一些插件可以生成通知。在开发过程中,当您只想看到自己的代码产生的错误时,这有点烦人。

如何关闭WordPress中的通知,但保持启用错误报告?

我认为这应该行得通,但不行:

define( \'WP_DEBUG\', true );
error_reporting(E_ALL & ~E_NOTICE);
编辑:我应该指出,我将此代码添加到wp配置中。php,只是想澄清一下。

1 个回复
SO网友:P.Sav

或者,您可以创建一个调试日志文件,用于读取错误。资料来源:http://codex.wordpress.org/Editing_wp-config.php#Configure_Error_Log

/**
 * This will log all errors notices and warnings to a file called debug.log in
 * wp-content (if Apache does not have write permission, you may need to create
 * the file first and set the appropriate permissions (i.e. use 666) ) 
 */

define(\'WP_DEBUG\', true);
define(\'WP_DEBUG_LOG\', true);
define(\'WP_DEBUG_DISPLAY\', false);
@ini_set(\'display_errors\',0);

相关推荐

即使WP_DEBUG设置为FALSE也会发出警告

链接https://vreqenz-stream.de/shop/ 在某些设备上打开而在其他设备上打开时引发警告<我认为这可能是cahce的问题,但我已经从WP rocket和浏览器中清除了缓存。只是为了获取信息,我正在使用Plesk web管理工具下面是我的WP\\U配置设置ini_set(\'log_errors\',\'On\'); ini_set(\'display_errors\',\'Off\'); ini_set(\'error_reporting\', E_ALL )