WordPress网站XML地图报错修复的方法

图片[1]-WordPress网站XML地图报错修复的方法-阿宅学院

WordPress网站XML地图(站点地图)是网站收录一个重要的环节,我们生成sitemap.xml文件时,打开它可能会出现报错的现象!

错误内容如下:

error on line 1 at column 6: XML declaration allowed only at the start of the document

下面大头教大家解决WordPress网站XML地图报错的问题。

报错解决方法

1、打开网站根目录的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';
}

2、替换完毕后保存即可。


    © 版权声明
    THE END
    支持博主,更新加速
    点赞2赞赏 分享
    勋章统计

    评论一下 抢沙发

    请登录后发表评论

      请登录后查看评论内容