Title: FeedWordPress and Post Thumbnails
Last modified: August 19, 2016

---

# FeedWordPress and Post Thumbnails

 *  [bluebird2](https://wordpress.org/support/users/bluebird2/)
 * (@bluebird2)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/)
 * IS there any way to generate post thumbnails (“Featured Images” in WP 3) from
   the images in the imported posts in FeedWordPress?
 * [http://wordpress.org/extend/plugins/feedwordpress/](http://wordpress.org/extend/plugins/feedwordpress/)

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

 *  [devmohsh](https://wordpress.org/support/users/devmohsh/)
 * (@devmohsh)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606206)
 * i use this function to get the first image from the imported entries
 *     ```
       function get_first_image() {
           global $post, $posts;
           $first_img = '';
           ob_start();
           ob_end_clean();
           $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i’,     $post->post_content, $matches);
           $first_img = $matches [1] [0];
           if(empty($first_img)){ //Defines a default image
               $first_img = “/images/default.jpg”;
           }
           return $first_img;
       }
       ```
   
 *  Thread Starter [bluebird2](https://wordpress.org/support/users/bluebird2/)
 * (@bluebird2)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606247)
 * I copy/pasted the code in the “functions.php” but it broke the site. I don’t 
   know PHP but I know enough to do the basic things. Is there any thing more than
   should do here to fix the problem?
 *  [janbletz](https://wordpress.org/support/users/janbletz/)
 * (@janbletz)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606378)
 * Maybe you could use the plugin ‘Better Feed’? Better as in ‘better than feedwordpress’:
   [http://wordpress.org/extend/plugins/ozh-better-feed/](http://wordpress.org/extend/plugins/ozh-better-feed/)
 * I haven’t tried it (yet).
 *  [Pieter Bos](https://wordpress.org/support/users/senlin/)
 * (@senlin)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606404)
 * Better Feed has absolutely nothing to do with FeedWordPress!
 *  Thread Starter [bluebird2](https://wordpress.org/support/users/bluebird2/)
 * (@bluebird2)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606405)
 * Yes. They have two different functions.
 *  [Adam W. Warner](https://wordpress.org/support/users/awarner20/)
 * (@awarner20)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606424)
 * [@bluebird2](https://wordpress.org/support/users/bluebird2/),
 * I wonder if you’ve found a working solution for this? I have about five sites
   on a network install and the main site’s “General News” category of posts is 
   feeding the other five. These are using themes that make use of post thumbnails…
 *  Thread Starter [bluebird2](https://wordpress.org/support/users/bluebird2/)
 * (@bluebird2)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606426)
 * Not yet.
    🙁
 *  [Adam W. Warner](https://wordpress.org/support/users/awarner20/)
 * (@awarner20)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606427)
 * [@bluebird2](https://wordpress.org/support/users/bluebird2/),
 * I’m closer. Do you happen to be a member of StudioPress? My thread is behind 
   the login on their Genesis Framework forums. Although the method I’m exploring
   is a function that filters the built-in genesis_get_image hook to include Justin
   Tadlock’s get_the_image. It’s working for thumbnail sizes now, but there are 
   other sizes I’m trying to get it to work with also.
 * Thanks to Daisy Olsen for the actual function.
 * If you do have a login to their support forum, the thread is here:
    [http://www.studiopress.com/support/showpost.php?p=198098&postcount=10](http://www.studiopress.com/support/showpost.php?p=198098&postcount=10)
 *  [pasqualino77](https://wordpress.org/support/users/pasqualino77/)
 * (@pasqualino77)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606429)
 * I have the sam problem i can add the thumd in my post
 *  Thread Starter [bluebird2](https://wordpress.org/support/users/bluebird2/)
 * (@bluebird2)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606430)
 * [@awarner20](https://wordpress.org/support/users/awarner20/),
 * No. I don’t use Genesis. Neither I have access to the support forum.
 *  [MaxMendez](https://wordpress.org/support/users/maxmendez/)
 * (@maxmendez)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606444)
 * Hi, I have the same problem, could solver?
 *  [Gwyneth Llewelyn](https://wordpress.org/support/users/gwynethllewelyn/)
 * (@gwynethllewelyn)
 * [14 years, 12 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606472)
 * Looks like you might have some luck installing a plugin called Auto Post Thumbnails.
   I’m trying it out now to see if it does the job automatically; it certainly fixes
   things for older posts already pulled by FeedWordPress…
 *  [Zeb](https://wordpress.org/support/users/zeb-el/)
 * (@zeb-el)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606474)
 * Hi, Have the same problem. Need to recieve images to display in the posts. Hope
   to find a hack for this issue…

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

The topic ‘FeedWordPress and Post Thumbnails’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/feedwordpress_a6a79a.svg)
 * [FeedWordPress](https://wordpress.org/plugins/feedwordpress/)
 * [Support Threads](https://wordpress.org/support/plugin/feedwordpress/)
 * [Active Topics](https://wordpress.org/support/plugin/feedwordpress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/feedwordpress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/feedwordpress/reviews/)

## Tags

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

 * 13 replies
 * 9 participants
 * Last reply from: [Zeb](https://wordpress.org/support/users/zeb-el/)
 * Last activity: [14 years, 11 months ago](https://wordpress.org/support/topic/feedwordpress-and-post-thumbnails/#post-1606474)
 * Status: not resolved