Skip to content

Instantly share code, notes, and snippets.

@kachi
Created March 13, 2012 21:24
Embed
What would you like to do?
<?php
function post_thumbnail_in_feeds($content) {
global $post;
if(has_post_thumbnail($post->ID)) {
$content = '<div>' . get_the_post_thumbnail($post->ID) . '</div>' . $content;
}
return $content;
}
add_filter('the_excerpt_rss', 'post_thumbnail_in_feeds');
add_filter('the_content_feed', 'post_thumbnail_in_feeds');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment