WP RSS Images - Wordpress Plugin
Wordpress plugin that allows to use the first attached image of your post on your RSS. You can select the size of the images on the admin panel.
Installation
1. Upload ‘wp rss image’ folder to the `/wp-content/plugins/` directory.
2. Activate the plugin through the ‘Plugins’ menu in WordPress.
3. Go to Settings/WP RSS Image and select the image size (Thumbnail, Medium, Full) and the feed (rss, rss2).
Settings
Feed Examples
RSS http://web-argument.com/feed/rss/
RSS 2 http://web-argument.com/feed/
Dowload
wp-rss-image v1.00 - From wordpress plugin directory




Same here. I’m using WP 2.71, and no settings. Should I change sumthin’ in the code?
I couldn’t get it to work either. I’m using WordPress 2.7.1
It activates in wp 2.0.9 but I cannot find the control area. There’s no such thing as Settings/WP RSS Image. There’s an options tab, but nothing about WP RSS Image. Help please.
I could not get it to work on wp 2.7.1 .. after i installed it, it broke my link feed. Does it work on wp 2.7.1
@Gordon Franke
i have add also atom support.
please contact me.
hello i have patched the plugin:
1. add correct Content-Type
2. remove foreach use simple current
3. remove php warning
4. format code
21d20
< $image_size = get_option(’rss_image_size_op’);
23,24c22,23
< if (isset($image_size)) $image_url = rss_image_url($image_size);
$image_size = get_option(’rss_image_size_op’);
> if (isset($image_size)) $image_url = rss_image_url($image_size);
26,28c25,30
< if ($image_url !== false) :
< $filename = $image_url;
else $image_url = rss_image_url(’medium’);
>
> if ($image_url != ”) :
>
> $filename = $image_url;
> $ary_header = get_headers($filename, 1);
30,31c32
< $filesize = $ary_header['Content-Length'];
$filesize = $ary_header['Content-Length'];
33,34c34,35
< echo “”;
echo “”;
> endif;
40,41c41
< global $post;
global $post;
43,48c43,46
<
< if($attachments !== false) :
< $attachment = current($attachments);
ID, $default_size);
<
if($attachments == true) :
> foreach($attachments as $id => $attachment) :
> $img = wp_get_attachment_image_src($id, $default_size);
> endforeach;
50,51c48
<
return $img[0];
Hi, Nice plug in, works great, here it comes, but is there any way to have the image appear in the rss feed ala engadget.com?
Thanks,
Adam
I see that this includes the image as an attachment, but doesn’t actually display the image in the feed. Is this the way the plugin is supposed to work? I want something that will actually show the image along with the text. Please advise.
Thanks for this great plugin. My wifi photo frame needs the Media RSS Module to load images. So I patched your plugin to support it:
http://www.vdberg.org/wp-rss-images.mrss.patch
http://www.vdberg.org/wp-rss-images.txt
Would this display an image that was used in a custom field?
hi. Thanks for plugin
perfect.
Regards
This sure comes in handy. I’ll give it a try and will post results later.
Thanks a lot.