如何将错误报告更改为只在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); 文章导航