您可以在WordPress中启用调试。在wp配置中添加以下行。php文件。然后检查调试。wp内容目录中的日志文件。
// Turns WordPress debugging on
define(\'WP_DEBUG\', true);
// Tells WordPress to log everything to the /wp-content/debug.log file
define(\'WP_DEBUG_LOG\', true);
// Doesn\'t force the PHP \'display_errors\' variable to be on
define(\'WP_DEBUG_DISPLAY\', false);
// Hides errors from being displayed on-screen
@ini_set(\'display_errors\', 0);