Problem with RSS feed images/text
3 posts
• Page 1 of 1
Problem with RSS feed images/text
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
Any idea? Tks!
Ralph
- Ralphibus
- Posts: 7
- Joined: 08 Jan 2010, 22:46
Re: Problem with RSS feed images/text
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,
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
-

Kadom - Site Admin
- Posts: 23
- Joined: 23 Mar 2009, 12:05
Re: Problem with RSS feed images/text
So in function.php around line 225
you should replace the code of the function kd_image_for_feeds by this one
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,
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).'&h=180&w=290&zc=1&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).'&h=180&w=290&zc=1&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
-

Kadom - Site Admin
- Posts: 23
- Joined: 23 Mar 2009, 12:05
3 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 0 guests

