Skip to content

Instantly share code, notes, and snippets.

@Ahrengot
Created February 14, 2012 13:06
Show Gist options
  • Save Ahrengot/1826654 to your computer and use it in GitHub Desktop.
Save Ahrengot/1826654 to your computer and use it in GitHub Desktop.
Include post thumbnail in WordPress RSS feed
function add_post_thumbnail_feeds($content) {
global $post;
if(has_post_thumbnail($post->ID)) {
$content = '<div>' . get_the_post_thumbnail($post->ID, 'medium') . '</div>' . $content;
}
return $content;
}
add_filter('the_excerpt_rss', 'add_post_thumbnail_feeds');
add_filter('the_content_feed', 'add_post_thumbnail_feeds');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment