Exclude caption from RSS feed
-
The plugin works great, there is just one small thing that I would like to fix and haven’t found a solution for yet. I want to display thumbnail versions of featured images in my RSS feed but WITHOUT the caption (so I want the caption to only display for the single-post). Any idea how to do that? For reference the code I used to add images to my feed :
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');
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Exclude caption from RSS feed’ is closed to new replies.