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

November 9th, 2008  | Tags: , , , , , ,
  1. May 29th, 2009 at 14:37
    Reply | Quote | #1

    Same here. I’m using WP 2.71, and no settings. Should I change sumthin’ in the code?

  2. April 26th, 2009 at 00:10
    Reply | Quote | #2

    I couldn’t get it to work either. I’m using WordPress 2.7.1

  3. Dave
    April 14th, 2009 at 21:21
    Reply | Quote | #3

    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.

  4. deynira
    April 1st, 2009 at 19:12
    Reply | Quote | #4

    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

  5. March 23rd, 2009 at 17:31
    Reply | Quote | #5

    @Gordon Franke

    i have add also atom support.

    please contact me.

  6. March 23rd, 2009 at 15:22
    Reply | Quote | #6

    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];

  7. January 10th, 2009 at 16:56
    Reply | Quote | #7

    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

  8. December 27th, 2008 at 22:53
    Reply | Quote | #8

    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.

  9. December 10th, 2008 at 21:37
    Reply | Quote | #9

    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

  10. November 26th, 2008 at 00:19

    Would this display an image that was used in a custom field?

  11. November 10th, 2008 at 18:29

    hi. Thanks for plugin

    perfect.

    Regards

  12. Alex
    November 9th, 2008 at 03:50

    This sure comes in handy. I’ll give it a try and will post results later.

    Thanks a lot.

TOP