欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

利用Fix Rss Feeds插件修复WordPress的Feed显示错误

程序员文章站 2023-02-25 19:28:41
今天突然有个网友留言说博客的feed挂了,症状如下: chrome直接打开订阅页面显示如下: this page contains the following...

今天突然有个网友留言说博客的feed挂了,症状如下:

chrome直接打开订阅页面显示如下:

this page contains the following errors:

error on line 1 at column 1: document is empty

below is a rendering of the page up to the first error.

feeddemon提示:此feed包含错误。

添加后也没什么影响,能正常使用。

鲜果阅读器也可阅读,但是没有获取到最新的文章。

用ie试了下,显示“文档顶层存在无效内容。”

查看源代码发现是能看到html格式解析后的内容,这说明wordpress的feed输出是没有问题的,出问题的在于某个文件的格式。不过要找到是哪个文件出问题就比较难了。网上给出的解决方法大致都是这样的:

检测上、下是否有多余的回车、换行符号

1、检测 wp-config.php 文件,查看php主体之外的代码有无回车符;

2、同上,检测 wp-rss2.php,wp-atom.php文件,如果最近没修改过,可略过;

3、同上,检测 functions.php 文件;

4、注意 feed是有缓存的,在修改完成之后,发一篇文章,使wp程序重建feed,从而查看效果;

5、若仍然有错,可以尝试暂时关闭所有插件,更换主题等逐个排除。

把上述文件都修改了个遍,还是没有头绪。。于是装了个插件“fix rss feeds”,启用后修复一下就搞定了。而且修复之后把插件删了也不会反弹~

研究了下这个插件,似乎只是修改了wordpress根目录下的wp-blog-header.php,其实只需将这个文件改为:

<?php
/**
 * loads the wordpress environment and template.
 *
 * @package wordpress
 */

if ( !isset($wp_did_header) ) {
 $wp_did_header = true;
  ob_start(); //2010-09-18 gofunnow.com added, it will fix rss feed error "error on line 2: the processing instruction target matching "[xx][mm][ll]" is not allowed." while burn feed from feedburner.com
 require_once( dirname(__file__) . '/wp-load.php' );
  ob_end_clean(); //2010-09-18 gofunnow.com added, it will fix rss feed error "error on line 2: the processing instruction target matching "[xx][mm][ll]" is not allowed." while burn feed from feedburner.com
 wp();
 require_once( abspath . wpinc . '/template-loader.php' );
}
?>​

就可以了。