Bug in wp-rss2.php?
-
Lines 40-43:
code
<?php if (get_settings(‘rss_use_excerpt’)) : ?>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
<?php else : ?>
<description><![CDATA[<?php the_excerpt_rss() ?>]]></description>/code
It’s the exact same thing. When I changed to the following, it seems to be working:
code
<description><![CDATA[<?php the_content_rss(”, 0, ”, get_settings(‘rss_excerpt_length’)) ?>]]></description>code
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Bug in wp-rss2.php?’ is closed to new replies.