Problem with RSS feed images/text

Ask questions and get support about Image River Wordpress Theme

Problem with RSS feed images/text

Postby Ralphibus » 13 Apr 2010, 22:07

RSS feed with images works fine so far (tks for the update), but when I publish some text in the textbox, the RSS feed ONLY displays the TEXT, but not the image anymore.

Any idea? Tks!

Ralph
Ralphibus
 
Posts: 7
Joined: 08 Jan 2010, 22:46

Re: Problem with RSS feed images/text

Postby Kadom » 14 Apr 2010, 22:17

Hello,

Thanks Ralphibus for the information, I'm trying to figure this out and I will come back to you.
By the way a new update on ImageRiver will come soon with probably Wordpress 3.0.


Best Regards,
Kadom Admin
User avatar
Kadom
Site Admin
 
Posts: 23
Joined: 23 Mar 2009, 12:05

Re: Problem with RSS feed images/text

Postby Kadom » 14 Apr 2010, 22:29

So in function.php around line 225
you should replace the code of the function kd_image_for_feeds by this one

Code: Select all
function kd_image_for_feeds( $content='' ) {

   global $post, $id, $wpdb;

   if(get_post_meta($post->ID,'screenshot', true) <> '') {
      $content = '
         <p>
            <img src="'.get_bloginfo('template_directory').'/thumb.php?src='.get_post_meta($post->ID,'screenshot', true).'&amp;h=180&amp;w=290&amp;zc=1&amp;q=85" alt="" class="center"/>
         </p>'.$content;
      return $content;
   }
   if(get_post_meta($post->ID,'image', true) <> '') {
      $content = '
         <p>
            <img src="'.get_bloginfo('template_directory').'/thumb.php?src='.get_post_meta($post->ID,'image', true).'&amp;h=180&amp;w=290&amp;zc=1&amp;q=85" alt="" class="center"/>
         </p>'.$content;
      return $content;
   }
   
   return $content;
}

add_filter('the_content_rss', 'kd_image_for_feeds');
add_filter('the_excerpt_rss', 'kd_image_for_feeds');


After that don't forget to update a post in your wordpress admin panel to update the RSS feed.

I will include this in my next update.

Best Regards,
Kadom Admin
User avatar
Kadom
Site Admin
 
Posts: 23
Joined: 23 Mar 2009, 12:05


Who is online

Users browsing this forum: No registered users and 0 guests