Forum Moderators: rogerd & travelin cat
Reading > RSS, show excerptit is not the current standard and could be due to some plugin setting or theme settings because the standard options shown in Settings > Reading > shows options as:
For each post in a feed, includeNote also:> Full Text
>Summary
Your theme determines how content is displayed in browsers. (with a link to learn more)
Blog Post Feed Content Options: You can limit the number of blog posts which will show on your Blog page, as well as limit the number that will feed into the RSS feed of your blog. The default for each is 10. You can also specify whether the feed will include a summary or the full content of these posts. This summary is the Post Excerpt metabox on the Create or Edit Post pages, which you can create in the post editor.
function rss_post_thumbnail($content) {
global $post;
if(has_post_thumbnail($post->ID)) {
$content = '<p>' . get_the_post_thumbnail($post->ID) .
'</p>' . get_the_content();
}
return $content;
}
add_filter('the_excerpt_rss', 'rss_post_thumbnail');
add_filter('the_content_feed', 'rss_post_thumbnail');