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