WordPress可以做日志记录!请在此处查看WordPress调试页面https://codex.wordpress.org/Debugging_in_WordPress
我通常喜欢将本地开发网站设置为在调试文件中记录错误,而不是将错误输出到屏幕上。
转到您的wp\\u配置文件,并滚动到定义wp\\u DEBUG的底部。
这就是我的典型设置:
define(\'WP_DEBUG\', true); // To enable debugging. Leave things just like this to output errors, warnings, notices to the screen:
define( \'WP_DEBUG_LOG\', true ); // To turn on logging
define( \'WP_DEBUG_DISPLAY\', false ); // To prevent output of errors, warnings, notices to the screen (which I personally find SUPER annoying):
通过这些设置,WordPress现在可以将错误、警告和通知记录到
debug.log
文件位于
/wp-content/debug.log
生产环境中的日志文件是安全威胁,因此IF 如果您决定登录到生产环境,最好设置您的。htaccess文件来拒绝对日志文件的访问(或者类似地使用安全插件来阻止它)。这样,您仍然可以获取日志,但不必担心黑客也会获取所有这些信息。