我正在使用Azure云、多站点WordPress,并在wp配置中启用了这些代码。php文件。
// Enable WP_DEBUG mode
define( \'WP_DEBUG\', true );
// Enable Debug logging to the /wp-content/debug.log file
define( \'WP_DEBUG_LOG\', true );
// Disable display of errors and warnings
define( \'WP_DEBUG_DISPLAY\', true );
@ini_set( \'display_errors\', 0 );
// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
define( \'SCRIPT_DEBUG\', true );
但没有变化。它只显示一个空白页,我找不到任何调试。如果我应用“var\\u dump”,则不会在wp content文件夹中记录文件,也不会在页面上显示任何错误。我应该应用或检查哪些设置?