在WordPress主目录中的WP-config.php文件中加入以下代码:

1
2
3
4
5
6
7
8
// Turn on Debugging
define('WP_DEBUG', TRUE);

// Yes, log errors please
define( 'WP_DEBUG_LOG', TRUE );

// Let's not show errors on the page.
define( 'WP_DEBUG_DISPLAY', FALSE );

日志路径:

1
http://[your-website]/wp-content/debug.log

正式上线之前记得把调试开关关闭即可。