Opened 17 years ago
Closed 17 years ago
#6922 closed defect (bug) (duplicate)
RSS 2.0 feeds never display full posts
Reported by: | ulrichp | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description
From line 41, wp-includes/feed-rss2.php:
<?php if (get_option('rss_use_excerpt')) : ?> <description><![CDATA[<?php the_excerpt_rss() ?>]]></description> <?php else : ?> <description><![CDATA[<?php the_excerpt_rss() ?>]]></description>
As a result, even if RSS feeds are set to show the entire post instead of an excerpt, the full post is never shown. Changing the second call to the_excerpt_rss() to be a call to the_content() seems to work.
Change History (1)
Note: See
TracTickets for help on using
tickets.
See #6905