每次我在我的多站点wordpress安装中创建一个新站点时,wp-admin屏幕为空?为什么?
答案 0 :(得分:0)
白屏是PHP错误。尝试调试并查看它们是什么。见https://codex.wordpress.org/WP_DEBUG
添加
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false);
在wp-config.php中,debug.log文件将在wp-content中。
更改"显示" line to true
define( 'WP_DEBUG_DISPLAY', true);
将它们转储到浏览器并记录它们。