RSS Featured Image

RSS Featured Image Install Statistics

24
318.18%
Today: 35 Yesterday: 11 All-time: 18,435 downloads
RSS Featured Image Icon

Try plugin: RSS Featured Image

We'll create fresh WordPress site with RSS Featured Image installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About RSS Featured Image

Add the featured image into your RSS feed (in the media:content). Works nicely with Mailchimp (|RSSITEM:IMAGE|). Light and simple, no options, no clut …

20


0


0


0


0

updated: 7 months ago
since: 6 years ago
author: Jordy Meow

Description

RSS Featured Image adds the featured image into your RSS feed (in the media:content). It works nicely with Mailchimp (|RSSITEM:IMAGE|). In fact, it basically does the same thing as another (and more famous) plugin but without cluttering your WordPress Admin. This is a simple task, and I believe it should be invisible and run peacefuly in the background, with no impact on the UI and the overall WordPress performance.

Usage

By default, the size of the image is “large”. I think it would be a shame to add new options to your WordPress admin only for this, so if you want to change the size, I propose you a filter 🙂 You can include some code in your functions.php to take care of this. This is how you can use it:

function thumbnail_size_for_rss( $default ) {
return ‘thumbnail’;
}
add_filter( ‘rfi_rss_image_size’, ‘thumbnail_size_for_rss’, 10, 1 );