CDATA error for RSS feed

时间:2013-05-01 作者:user32256

这个RSS feed of my site 不工作。

错误消息为:

CDATA部分未关闭第33行字符25

在下面的另一行:

<description><![CDATA[<br/>
当我试图将我的博客放在亚马逊和feed burner上时,这两个网站都向我表明我的RSS提要不起作用。我验证了我的RSS-on-feed验证器,他们说它不存在,而且无效
打开my blog, 我关闭了插件并更改了主题,但这无助于解决问题。我的想法是打开feed-burner并放入第二个RSS-feed,但我发现如果第一个RSS-feed不起作用,这是行不通的。

我怎样才能解决这个问题?

1 个回复
SO网友:s_ha_dum

假设正确的URL为http://talentsofautism.com...

The problem 正在呼叫colorful_continue_reading_link, 这不是WordPress函数。

致命错误:调用未定义的函数colorful_continue_reading_link()/home/content/42/9357842/html/talentsofautism/wp-content/themes/d5-colorful/functions.php 在线67

A search suggests 它是D5 Colorful 主题,这就是您正在使用的主题。

Theme Name: D5 COLORFUL
Theme URI: http://d5creation.com/2012/08/06/colorful/

Author: D5 Creation
Author URI: http://d5creation.com/
你的主题似乎有问题。该函数是used twice in the theme\'s functions.php 但我不知道它的定义是什么。是的a relatively simple theme, 我不知道还能在哪里找到这个函数。我倾向于称之为虫子。

如果您注释掉使用的两个函数colorful_continue_reading_link 应纠正此问题:

//  Replaces "[...]" (appended to automatically generated excerpts) with an ellipsis and colorful_continue_reading_link().
//  function tied to the excerpt_more filter hook.
//  function colorful_auto_excerpt_more( $more ) {
//      return \' &hellip;\' . colorful_continue_reading_link();
//  }
//  add_filter( \'excerpt_more\', \'colorful_auto_excerpt_more\' );
//  
//  Adds a pretty "Continue Reading" link to custom post excerpts.
//  function colorful_custom_excerpt_more( $output ) {
//      if ( has_excerpt() && ! is_attachment() ) {
//          $output .= colorful_continue_reading_link();
//      }
//      return $output;
//  }
//  add_filter( \'get_the_excerpt\', \'colorful_custom_excerpt_more\' );
那是绷带。联系主题开发人员以了解colorful_continue_reading_link 应该是。

结束