错误内容如下:error on line 1 at column 6: XML declaration allowed only at the start of the document
此错误处理方法1:
打开functions.php,找一下有没有 <?php开头,后面是空行什么都没有,然后跟了个 ?>
把这个删掉。
此错误处理方法2:
打开根目录下wp-blog-header.php
用如下代码替换:
<?php if ( ! isset( $wp_did_header ) ) { $wp_did_header = true;ob_start(); // Load the WordPress library. require_once __DIR__ . '/wp-load.php'; // Set up the WordPress query. wp(); ob_end_clean(); // Load the theme template. require_once ABSPATH . WPINC . '/template-loader.php'; }
需要注意的是ob_start();吆喝wp_did写在一行。ob_end_clean()要和wp()写在一行。
评论