XML Sitemap & Google News / xml 地圖 報(bào)錯(cuò)This page contains the following errors: Below is a rendering of the page up to the first error.

搬家出現(xiàn)一個(gè)xml站點(diǎn)地圖的報(bào)錯(cuò),右鍵查看該頁面源碼后發(fā)現(xiàn)多了個(gè)空格導(dǎo)致的。接下來是解決辦法
打開WordPress站點(diǎn)目錄文件路徑找到wp-blog-header.php,如果你眼睛和我一樣不好,你可以使用ctrl+F 輸入wp-blog-header.php后按回車進(jìn)行查找。
打開wp-blog-header.php文件后,ctrl+A全選,刪除里面的所有內(nèi)容,復(fù)制下面的新內(nèi)容并且保存:
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( !isset($wp_did_header) ) {
$wp_did_header = true;
ob_start();
require_once( dirname(__FILE__) . '/wp-load.php' );
ob_end_clean();
wp();
require_once( ABSPATH . WPINC . '/template-loader.php' );
}
?>