Title: Featured Image In Feed
Last modified: May 26, 2020

---

# Featured Image In Feed

 *  Resolved [qph9697](https://wordpress.org/support/users/qph9697/)
 * (@qph9697)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/featured-image-in-feed/)
 * Hi,
 * I am trying to add featured image in RSS feed.
 * I got this code from a site,
 * >  <?php
   >  /** * Add Featured Image to RSS feed * **/ add_filter( ‘the_content’,‘
   > ld_featured_image_in_feed’ ); function ld_featured_image_in_feed( $content ){
   > global $post; if( is_feed() ) { if ( has_post_thumbnail( $post->ID ) ){ $feat_image_output
   > = get_the_post_thumbnail( $post->ID, ‘full’, array( ‘style’ => ‘height: auto;
   > margin-bottom:2em;max-width: 600px !important;padding-top: 0.75em;width: 100%!
   > important;’ ) ); $content = $feat_image_output . $content; } } return $content;}?
   > >
 * But it’s not working.
 * Is there any change I must do in this code?
 * Please help me with this.
 * Thank You.

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Theme Author [Tom](https://wordpress.org/support/users/edge22/)
 * (@edge22)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/featured-image-in-feed/#post-12896410)
 * Hi there,
 * That code looks like it should work in theory.
 * Perhaps a plugin like this would be better?: [https://wordpress.org/plugins/rss-featured-image/](https://wordpress.org/plugins/rss-featured-image/)
 *  Thread Starter [qph9697](https://wordpress.org/support/users/qph9697/)
 * (@qph9697)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/featured-image-in-feed/#post-12940658)
 * Thank You.
 * I will try this.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Featured Image In Feed’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/generatepress/3.6.1/screenshot.
   png)
 * GeneratePress
 * [Support Threads](https://wordpress.org/support/theme/generatepress/)
 * [Active Topics](https://wordpress.org/support/theme/generatepress/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/generatepress/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/generatepress/reviews/)

## Tags

 * [featured image](https://wordpress.org/support/topic-tag/featured-image/)
 * [rss-feed](https://wordpress.org/support/topic-tag/rss-feed/)

 * 2 replies
 * 2 participants
 * Last reply from: [qph9697](https://wordpress.org/support/users/qph9697/)
 * Last activity: [5 years, 11 months ago](https://wordpress.org/support/topic/featured-image-in-feed/#post-12940658)
 * Status: resolved