Skip to content

Instantly share code, notes, and snippets.

@adamlaki
Created January 20, 2019 16:30
Show Gist options
  • Save adamlaki/9bea4f0530d72127f43f33d78e154763 to your computer and use it in GitHub Desktop.
Save adamlaki/9bea4f0530d72127f43f33d78e154763 to your computer and use it in GitHub Desktop.
How to Add Featured Image to RSS Feeds in WordPress - Add to the content body
<?php
function pine_post_thumbnails_in_feeds( $content ) {
global $post;
if( has_post_thumbnail( $post->ID ) ) {
$content = '<div>' . get_the_post_thumbnail( $post->ID, 'your-image-size' ) . '</div>' . $content;
}
return $content;
}
add_filter( 'the_excerpt_rss', 'pine_post_thumbnails_in_feeds' );
add_filter( 'the_content_feed', 'pine_post_thumbnails_in_feeds' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment