Skip to content

Instantly share code, notes, and snippets.

@FinalDestiny
Created January 14, 2018 17:28
Show Gist options
  • Save FinalDestiny/38347d966190ff121734a613b9b2225d to your computer and use it in GitHub Desktop.
Save FinalDestiny/38347d966190ff121734a613b9b2225d to your computer and use it in GitHub Desktop.
function featuredtoRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = '<div>' . get_the_post_thumbnail( $post->ID, 'medium', array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;
}
return $content;
}
add_filter('the_excerpt_rss', 'featuredtoRSS');
add_filter('the_content_feed', 'featuredtoRSS');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment