• Resolved tonylizza

    (@tonylizza)


    Hello all,

    I have recently set up my website at http://www.goodenoughgatsby.com. I have set up an RSS feed to forward to Feedburner. The RSS URL is http://goodenoughgatsby.com/feed. My problem is that whenever I attempt to view the RSS feed or subscribe to it using Google Reader, I only get a partial feed (three lines or so). I have attempted setting the “For each article in a feed, show” option to “Full Text” but new postings still show up only as partial feeds. Additionally, I have attempted editing the wp-includes/feed-rss2.php file and replaced this code:

    <?php if (get_option('rss_use_excerpt')) : ?>
        <description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
    <?php else : ?>
        <description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
      <?php if ( strlen( $post->post_content ) > 0 ) : ?>
        <content:encoded><![CDATA[<?php the_content() ?>]]></content:encoded>
      <?php else : ?>
        <content:encoded><![CDATA[<?php the_excerpt_rss() ?>]]>
        </content:encoded>
      <?php endif; ?>
    <?php endif; ?>

    with the following code:

    <?php if (get_option('rss_use_excerpt')) : ?>
        <description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
    <?php else : ?>
        <description><![CDATA[<?php the_content('',0,'') ?>]]></description>
      <?php endif; ?>
    <?php endif; ?>

    Additionally, I am not using excerpts of any kind and my posts. Any assistance anyone might have would be greatly appreciated.

    Thanks,

    Tony

Viewing 2 replies - 1 through 2 (of 2 total)
  • leonardof

    (@leonardof)

    I have the same issue. http://leonardof.med.br and http://leonardof.org, both hosted by DreamHost. They have a similar set of plugins, I wonder if any of them is to be blamed:

    • Akismet
    • Bad Behavior
    • Compact Archives
    • FeedStats
    • Google XML Sitemaps
    • Maintenance Mode
    • Piwik Analytics
    • Tango/GNOME Smileys
    • WP Super Cache
    Thread Starter tonylizza

    (@tonylizza)

    For some reason, the problem seems to have resolved itself. Maybe it was the extra code that I added. Anyway, thanks to all who looked at this.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WordPress RSS not publishing partial feeds instead of full’ is closed to new replies.