Skip to content

Instantly share code, notes, and snippets.

@ewistrand
Created November 19, 2015 13:45
Show Gist options
  • Save ewistrand/b32d1998ea9ce9b5ab27 to your computer and use it in GitHub Desktop.
Save ewistrand/b32d1998ea9ce9b5ab27 to your computer and use it in GitHub Desktop.
WP RSS Thumbnails
<?php
// Add Thumbnail To RSS
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