Skip to content

Instantly share code, notes, and snippets.

@javiergbas
Created January 28, 2016 15:41
Show Gist options
  • Save javiergbas/573cecb8fd9cb493a878 to your computer and use it in GitHub Desktop.
Save javiergbas/573cecb8fd9cb493a878 to your computer and use it in GitHub Desktop.
Add post thumbnails to RSS feed
// Add post thumbnails to RSS 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');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment