Skip to content

Instantly share code, notes, and snippets.

@dionysia
Created September 27, 2013 01:44
Show Gist options
  • Save dionysia/6723118 to your computer and use it in GitHub Desktop.
Save dionysia/6723118 to your computer and use it in GitHub Desktop.
Show Featured Image in Wordpress rss feed Source: http://wp.smashingmagazine.com/2011/12/07/10-tips-optimize-wordpress-theme/
add_filter('the_content_feed', 'rss_post_thumbnail');
function rss_post_thumbnail($content) {
global $post;
if( has_post_thumbnail($post->ID) )
$content = '<p>' . get_the_post_thumbnail($post->ID, 'thumbnail') . '</p>' . $content;
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment