Title: Image Below Text
Last modified: August 30, 2016

---

# Image Below Text

 *  Resolved [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [11 years ago](https://wordpress.org/support/topic/image-below-text/)
 * Sorry if i’m missing the obvious but Is it possible to get the image to appear
   below the text?
 * I’m inserting the image as a featured image.
 * [https://wordpress.org/plugins/featured-images-for-rss-feeds/](https://wordpress.org/plugins/featured-images-for-rss-feeds/)

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

 *  [DowntownRob](https://wordpress.org/support/users/downtownrob/)
 * (@downtownrob)
 * [11 years ago](https://wordpress.org/support/topic/image-below-text/#post-6191058)
 * Ah sorry, not at this time. It always inserts above the text, but the text can
   wrap around it.
 * You could try just adding this code to the bottom of your theme’s functions.php
   file (caution, first make backups, have FTP access for repairs if need be, etc)
   and it’ll add the image below the text:
 *     ```
       function featuredtoRSS($content) {
       global $post;
       if ( has_post_thumbnail( $post->ID ) ){
       $content = $content . '<div>' . get_the_post_thumbnail( $post->ID, 'medium', array( 'style' => 'margin-top: 15px;' ) ) . '</div>';
       }
       return $content;
       }
       add_filter('the_excerpt_rss', 'featuredtoRSS');
       add_filter('the_content_feed', 'featuredtoRSS');
       ```
   
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [11 years ago](https://wordpress.org/support/topic/image-below-text/#post-6191062)
 * Hi rob, thanks for the quick answer, It seemed to work if I put the image above
   the text and inserted the image into the post instead of using the featured image,
   is there a dis-advantage to using the image inside the post as opposed to a featured
   image?
 *  [DowntownRob](https://wordpress.org/support/users/downtownrob/)
 * (@downtownrob)
 * [11 years ago](https://wordpress.org/support/topic/image-below-text/#post-6191105)
 * Ah that would work, depending on the theme and how it displays the posts, etc.
   If it’s working for you the way you want, you’re all good.
 * Featured images are used by themes in different ways, so if you ever change themes,
   then it may require a featured image be set to show it, but perhaps you can cross
   that bridge if you ever get to it.
 *  Thread Starter [bluemuse](https://wordpress.org/support/users/bluemuse/)
 * (@bluemuse)
 * [11 years ago](https://wordpress.org/support/topic/image-below-text/#post-6191106)
 * Your code wound up being what I used as it solved some other layout issues that
   cropped up.
 * Thanks again for your help!!
 *  [DowntownRob](https://wordpress.org/support/users/downtownrob/)
 * (@downtownrob)
 * [11 years ago](https://wordpress.org/support/topic/image-below-text/#post-6191109)
 * Nice! My pleasure. Consider a donation if I saved you some headache.
 * [https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=R4SE22RQ4CB2E](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=R4SE22RQ4CB2E)

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

The topic ‘Image Below Text’ is closed to new replies.

 * ![](https://ps.w.org/featured-images-for-rss-feeds/assets/icon-256x256.png?rev
   =1546995)
 * [Featured Images in RSS for Mailchimp & More](https://wordpress.org/plugins/featured-images-for-rss-feeds/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/featured-images-for-rss-feeds/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/featured-images-for-rss-feeds/)
 * [Active Topics](https://wordpress.org/support/plugin/featured-images-for-rss-feeds/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/featured-images-for-rss-feeds/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/featured-images-for-rss-feeds/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [DowntownRob](https://wordpress.org/support/users/downtownrob/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/image-below-text/#post-6191109)
 * Status: resolved