Wordpress RSS XML空间错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress RSS XML空间错误相关的知识,希望对你有一定的参考价值。

Allows you to remove the whitespace that can appear before the xml tag in wordpress files such as wp-includes/feed-rss2.php
  1. // find these lines in the php file (ie, feed-rss2.php)
  2. header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
  3. $more = 1;
  4.  
  5. // immediately add these 3 lines after
  6. $out = ob_get_contents();
  7. $out = str_replace(array(" ", " ", " ", " "), "", $input);
  8. ob_end_clean();

以上是关于Wordpress RSS XML空间错误的主要内容,如果未能解决你的问题,请参考以下文章

WordPress基础:订阅源rss的使用

PHP 生成 RSS XML - 编码错误

仅在作者页面上显示WordPress作者RSS源

PHP Wordpress RSS短代码

WordPress - 代码片段插件

解析 XML(RSS 提要)的 PHP 错误