Title: RSS Feed Retriever
Author: Travis
Published: <strong>24. Januara 2014.</strong>
Last modified: 6. Januara 2023.

---

Pretražite dodatke

![](https://ps.w.org/wp-rss-retriever/assets/banner-772x250.jpg?rev=2144668)

Ovaj dodatak **nije testiran s najnovija 3 glavna izdanja WordPress-a**. Možda se
više ne održava ili se ne podržava i može imati problema sa kompatibilnošću kada
se koristi sa novijim verzijama WordPress-a.

![](https://ps.w.org/wp-rss-retriever/assets/icon-256x256.jpg?rev=2144668)

# RSS Feed Retriever

 Od [Travis](https://profiles.wordpress.org/tjtaylor/)

[Skini](https://downloads.wordpress.org/plugin/wp-rss-retriever.1.6.10.zip)

 * [Detalji](https://bs.wordpress.org/plugins/wp-rss-retriever/#description)
 * [Recenzije](https://bs.wordpress.org/plugins/wp-rss-retriever/#reviews)
 *  [Instalacija](https://bs.wordpress.org/plugins/wp-rss-retriever/#installation)
 * [Razvoj](https://bs.wordpress.org/plugins/wp-rss-retriever/#developers)

 [Podrška](https://wordpress.org/support/plugin/wp-rss-retriever/)

## Opis

This plugin fetches an RSS feed, or multiple feeds, and displays them in an unordered
list using shortcode.

[**Demo**](http://demo.thememason.com/rss/) | [**Video Tutorial**](https://www.youtube.com/watch?v=2EPdD65zS5U)
| [**PRO Version**](https://thememason.com/plugins/rss-retriever/)

### How to use:

Simply copy and paste the example code below to wherever you would like to display
your RSS feed. Replace the url and other properties as needed. (See FAQ section 
below to use in Gutenberg blocks, widgets, and PHP)

### Example:

    ```
    [wp_rss_retriever url="http://feeds.feedburner.com/TechCrunch/" items="10" excerpt="50" read_more="true" credits="true" new_window="true" thumbnail="200" cache="12 hours"]
    ```

### Live Demo:

[http://demo.thememason.com/rss/](http://demo.thememason.com/rss/)

### Features:

 * Fetch as many RSS feeds as you want
 * Display the RSS feed wherever you want using shortcode, including text widgets
 * Control whether to display the entire RSS feeds content or just an excerpt
 * Control how many words display in the excerpt
 * Control whether it has a Read more link or not
 * Control whether links open in a new window or not
 * Simple, lightweight, and fast
 * Easy to setup
 * Fetch thumbnail or first image
 * Control size of thumbnail (width and height)
 * Set cache time (in seconds)
 * Control order of items
 * Aggregate multiple feeds into one list
 * Dofollow or nofollow options

### Properties:

 * **url** – The url of the rss feed you wish to aggregate from. For multiple urls
   simply use a comma between them.
 * **items** – Number of items from the rss feed you wish to fetch _(Default is 
   10)_
 * **orderby** – Order the items by date, reverse date, or random _(default, date,
   date\_reverse, random)_
 * **title** – Whether to display the title or not _(true or false, defaults to 
   true)_
 * **excerpt** – How many words you want to display for each item _(Default is 20,
   use 0 for full text, use ‘none’ to remove the excerpt)_
 * **read_more** – Whether to display a read more link or not _(true or false, defaults
   to true)_
 * **new_window** – Whether to open the title link and read more link in a new window_(
   true or false, defaults to true)_
 * **thumbnail\*\*** – Whether or not you want to display a thumbnail, and if so,
   what size you want it to be_(true or false, defaults to true. Inserting a number
   will change the size, default is 150, use 150×200 format to set both width and
   height, use percents to fill the width, example: 100%x250 or 50%x250)_
 * **source** – Whether to display the source or not _(true or false, defaults to
   true)_
 * **date** – Whether to display the publish date or not _(true or false, defaults
   to true)_
 * **cache** – How long you want the feed to cache the results _(Default is 12 hours,
   you can use days, hours, seconds etc.)_
 * **dofollow** – Whether or not to make links dofollow _(true or false, defaults
   to false)_
 * **ajax** – Whether to load the feed via JavaScript or PHP _(true or false, defaults
   to true)_
 * **credits** – Whether to give credit to the plugin author _(true or false, defaults
   to false)_
 * **columns** – Set layout to columns/grid layout with number of columns. _(defaults
   to 0, use 2, 3, 4 etc.) **PRO version only**_
 * **icons** – Replace source & date labels with icons _(true or false, defaults
   to true) **PRO version only**_
 * **layout** – Set layout to masonry grid layout. _(default or masonry) **PRO version
   only**_

**PLEASE NOTE: Using thumbnails can cause longer load times depending on the feed
you are fetching from, use with caution.

Please post any issues under the support tab. If you use and like this plugin, please
don't forget to **rate** it! Additionally, if you would like to see more features
for the plugin, please let me know.

Shortcode can be used anywhere including in posts, pages, text widgets, and in PHP
files by using the do_shortcode function. This RSS import plugin is very lightweight
with a minimal amount of code as to insure it will not slow down your website. Build
a custom news aggregator or use this plugin as a simple feed to post plugin by displaying
the RSS parsing feed within the pages of your choice. This RSS aggregator is built
on the SimplePie API.

## Instalacija

This section describes how to install the plugin and get it working.

 1. Upload `wp-rss-retriever.zip` to the `/wp-content/plugins/` directory
 2. Unzip the file
 3. Activate the plugin through the ‘Plugins’ menu in WordPress
 4. Use the example shortcode [wp_rss_retriever url=”http://feeds.feedburner.com/TechCrunch/”
    items=”10” excerpt=”50” read_more=”true” credits=”true” new_window=”true” thumbnail
    =”200” cache=”7200”] anywhere in your content
 5. Change the url and other properties as needed

## ČPP

### The thumbnail is not displaying

This could be because the source you're fetching from does not include the featured
image in their RSS feed. There is nothing you can do to fix this unless you have
control of the source website. If so, you can simply install this plugin on the 
source website and it will include the featured images within the RSS feed automatically.

### The thumbnail is blurry

This is due to the source website including a low resolution image in their feed.
There is nothing you can do to fix this unless you have control of the source website.
If so, you can simply install this plugin on the source website and it will include
larger featured images within the RSS feed automatically.

### How do I change the layout? (ie. make the thumbnail first)

You can change the layout via WordPress filters. Add the following code to your 
themes functions.php file:

    ```
    function custom_rss_layout_callback( $layout ) {
        $layout = array(
            'thumbnail',
            'title',
            'content',
            'postdata',
        );
        return $layout;
    }
    add_filter( 'wp_rss_retriever_layout', 'custom_rss_layout_callback' );
    ```

In addition, you can add your own HTML to the output if you want to wrap elements.
Example:

    ```
    $layout = array(
        '<div class="my-custom-class">',
            'thumbnail',
            'title',
            'content',
            'postdata',
        '</div>'
    );
    ```

Or, if you only want to display the title:

    ```
    $layout = array(
        'title',
    );
    ```

### How do I display a feed with a Gutenberg Block?

Click on the “+” icon to add a new block. Search for “shortcode”. Click on the shortcode
block to add it. Copy and paste the example shortcode above into the block. Replace
the url and other parameters as needed.

### How do I display a feed in my content?

Copy and paste the example shortcode above into your content. Replace the url and
other parameters as needed. Update/publish the page or post.

### How do I display a feed in a widget?

Create a new text widget. Click on the “Text” tab. Copy and paste the example shortcode
above. Replace the url and other parameters as needed.

### How do I display a feed using PHP?

Here's an example of how to display an RSS feed with PHP

    ```
    <?php echo do_shortcode('[wp_rss_retriever url="http://feeds.feedburner.com/TechCrunch/" items="10" excerpt="50" read_more="true" credits="true" new_window="true" thumbnail="200" cache="7200"]'); ?>
    ```

## Recenzije

![](https://secure.gravatar.com/avatar/deb5d104d1d09c63a861e8f42872396cd6c794a1fea24750685413dbc52b4aca?
s=60&d=retro&r=g)

### 󠀁[Excellent plugin – one suggestion though](https://wordpress.org/support/topic/excellent-plugin-one-suggestion-though/)󠁿

 [hmmcrunchy](https://profiles.wordpress.org/hmmcrunchy/) 5. Septembra 2023.

Excellent works a dream – simple and efective Be very handy if there was a default
message to display if there is nothing on the RSS feed – rather than just displaying
an error

![](https://secure.gravatar.com/avatar/50654b8ae6c4227fd51e1b41e01ef27090a138c8712f348a8627228cce98964d?
s=60&d=retro&r=g)

### 󠀁[Good for simple implementations](https://wordpress.org/support/topic/good-for-simple-implementations/)󠁿

 [vampyris](https://profiles.wordpress.org/vampyris/) 13. Aprila 2023.

Considering this plugin is free, I think it's a great alternative to the many other
RSS display plugins out there that charge money for displaying images.

![](https://secure.gravatar.com/avatar/7bd01930288b7e5daceaa2f83a7ea84a9af2efd520c0982aa5e5eb88f56e71aa?
s=60&d=retro&r=g)

### 󠀁[Not compatible with PHP 8](https://wordpress.org/support/topic/not-compatible-with-php-8-6/)󠁿

 [mediasmia](https://profiles.wordpress.org/mediasmia/) 17. Septembra 2022.

Has not been updated for over 1 year and is not compatible with PHP 8.

![](https://secure.gravatar.com/avatar/3d71436a8733afd77f5d8fc1cf03f943bbdc9cbb4e78ec644a287fe0ecb5f089?
s=60&d=retro&r=g)

### 󠀁[Works but lacks Block implementation, alters your site RSS feed](https://wordpress.org/support/topic/works-but-lacks-block-implementation-alters-your-site-rss-feed/)󠁿

 [Marty](https://profiles.wordpress.org/bozzmedia/) 11. Juna 2022.

The shortcode provided does an ample job of importing RSS feeds. There are two things
that would improve this plugin: 1) Make it clear the plugin alters your site's RSS
feed and adds thumbnails to it. Then offer an option to disable that function. Better
yet, don't mess with the site's RSS feed at all as the purported purpose of this
plugin is to display RSS feeds on the frontend of your site, not alter your site's
RSS feed. It took me awhile to track this down and now I've replaced the plugin 
entirely due to this. 2) Offer a Block to be used with the Block Editor Finally 
Gutenberg users will get a good chunk of the functionality you need for bringing
in RSS feeds through the Core RSS Feed block now provided in WP.

![](https://secure.gravatar.com/avatar/c5606b7462acf13b913fb70d4c0e5407a42a817a0a56aab1034d04ad9bd14b10?
s=60&d=retro&r=g)

### 󠀁[Good](https://wordpress.org/support/topic/good-7145/)󠁿

 [hammersmithsociety](https://profiles.wordpress.org/hammersmithsociety/) 14. Marta
2022.

Does what it says, perfect for our needs – thanks

![](https://secure.gravatar.com/avatar/2b2369518a00d0d58e76a1ccd5256d24c9d31dfa65468eedc3e8ce712574036d?
s=60&d=retro&r=g)

### 󠀁[Best RSS feed Plugin](https://wordpress.org/support/topic/best-rss-feed-plugin/)󠁿

 [Khubaib Mehmood](https://profiles.wordpress.org/khubaib411/) 16. Novembra 2020.

I tried almost 10 to twelve free plugin's versions, but this plugin is best ever.
The best thing is that you can manage feed layout according to your requirement 
with a little bit of coding. Thanks for making this plugin.

 [ Read all 38 reviews ](https://wordpress.org/support/plugin/wp-rss-retriever/reviews/)

## Saradnici i programeri

“RSS Feed Retriever” is open source software. The following people have contributed
to this plugin.

Doprinositelji

 *   [ Travis ](https://profiles.wordpress.org/tjtaylor/)

“RSS Feed Retriever” je prijeveden na 7 dijalekata. Zahvala [prevodiocima](https://translate.wordpress.org/projects/wp-plugins/wp-rss-retriever/contributors)
za njihov doprinos.

[Prevedi “RSS Feed Retriever” na vaš jezik.](https://translate.wordpress.org/projects/wp-plugins/wp-rss-retriever)

### Zainteresirani za razvoj?

[Pregledajte kôd](https://plugins.trac.wordpress.org/browser/wp-rss-retriever/),
pogledajte [SVN spremište](https://plugins.svn.wordpress.org/wp-rss-retriever/)ili
se pretplatite na [dnevnik razvoja](https://plugins.trac.wordpress.org/log/wp-rss-retriever/)
od [RSS](https://plugins.trac.wordpress.org/log/wp-rss-retriever/?limit=100&mode=stop_on_copy&format=rss).

## Zapis promijena

#### 1.6.0

 * Add additional methods for retriving thumbnail images

#### 1.5.5

 * Fix a bug where dofollow option was not working with thumbnails

#### 1.5.3

 * Add more details to RSS errors
 * Fallback to original RSS fetch method if feed is invalid

#### 1.5.2

 * Increase performance with built-in caching system for all feeds
 * Disable ajax for feeds already cached

#### 1.5.1

 * Fix an issue causing some sources to block SimplePie requests

#### 1.5.0

 * Defer loading feeds via JavaScript (solves slow page loading issue)
 * Add ajax option (true or false) to disable deferred loading
 * Fix an issue where some feeds would not fetch
 * Hide images that contain broken or blocked links

#### 1.4.3

 * Fix an issue with default ordering for single feeds

#### 1.4.2

 * Add ability to grab thumbnail image from rss image tag

#### 1.4.1

 * Add custom filter hook to allow changes to the layout (wp_rss_retriever_layout)
 * Thumbnail images now link to the source

#### 1.4.0

 * Refactor feed fetching and formatting for performance
 * Improve error handling. Display attribute errors for administrators and editors
 * Allow cache setting to be plain text (ie. 2 hours, 2 days, etc.)
 * Fix a bug causing the shortcode not to load when an open or closing double quote
   was used
 * Allow thumbnails to take percentages as arguments for full width (ie. 100%x250)

#### 1.3.10

 * Fix a bug causing an error if the rss content is an empty string

#### 1.3.9

 * Fix a bug with function declarations not working with some themes

#### 1.3.7

 * Improve image finder functionality

#### 1.3.6

 * Add support for featured images in RSS feeds for self-hosted sources

#### 1.3.5

 * Suppress php warning from known SimplePie date bug

#### 1.3.4

 * Fix a bug causing a PHP error for feeds with a 404 error

#### 1.3.3

 * Fix a bug when published and source are disabled causing layout issue

#### 1.3.2

 * Fix an issue where feeds were automatically reordered by default WordPress settings

#### 1.3.1

 * Fix an issue where excerpts in East Asian languages were not trimming words properly

#### 1.3.0

 * Refactor image CSS to make img element act as background-size:cover
 * Remove default list-item styles
 * Include ability to set width and height on thumbnails (ie. 200×150)
 * Fix an issue where plugin CSS was not enqueuing when using the shortcode inside
   a text widget
 * Fix an issue where excerpt=0 was not stripping html tags from the feed.

#### 1.2.6

 * Fix HTML validation error

#### 1.2.4

 * Utilizes the local timezone set in WordPress general settings

#### 1.2.2

 * Dates now translates to the language set in WordPress general settings
 * Date and time format now uses the format set via WordPress general settings

#### 1.2.1

 * Fix a bug where the error message “No Items” was displaying outside of the list
   item
 * Fix an error that displays sometimes on 404 pages
 * Add optional plugin credits (disabled by default)
 * Add orderby=”random” method

#### 1.2

 * Fix SSL error
 * Add default nofollow for links
 * Add option for dofollow

#### 1.1.1

 * Support for aggregating multiple feeds into one list
 * Ability to order posts by date or reverse date
 * Options to display or remove source and date
 * Option to remove title

#### 1.1

 * Fixed several bugs
 * Fetch thumbnail or first image
 * Control size of thumbnail
 * Set cache time (in seconds)
 * Now includes small CSS file, required for thumbnail support

#### 1.0.2

 * Pulls images & html in when excerpt is not enabled

#### 1.0.1

 * Fixes bug where excerpt included html and broken images

#### 1.0

 * Initial release

## Meta

 *  Version **1.6.10**
 *  Last updated **prije 3 godine**
 *  Active installations **8.000+**
 *  WordPress version ** 2.8 ili viša **
 *  Tested up to **6.1.10**
 *  Languages
 * [Dutch](https://nl.wordpress.org/plugins/wp-rss-retriever/), [English (US)](https://wordpress.org/plugins/wp-rss-retriever/),
   [Finnish](https://fi.wordpress.org/plugins/wp-rss-retriever/), [French (France)](https://fr.wordpress.org/plugins/wp-rss-retriever/),
   [Italian](https://it.wordpress.org/plugins/wp-rss-retriever/), [Scottish Gaelic](https://gd.wordpress.org/plugins/wp-rss-retriever/),
   [Spanish (Chile)](https://cl.wordpress.org/plugins/wp-rss-retriever/) i [Spanish (Spain)](https://es.wordpress.org/plugins/wp-rss-retriever/).
 *  [Prevedite na vaš jezik](https://translate.wordpress.org/projects/wp-plugins/wp-rss-retriever)
 * Tags
 * [news aggregator](https://bs.wordpress.org/plugins/tags/news-aggregator/)[rss aggregator](https://bs.wordpress.org/plugins/tags/rss-aggregator/)
   [rss feed](https://bs.wordpress.org/plugins/tags/rss-feed/)[rss import](https://bs.wordpress.org/plugins/tags/rss-import/)
 *  [Napredni pogled](https://bs.wordpress.org/plugins/wp-rss-retriever/advanced/)

## Ocjene

 4.7 out of 5 stars.

 *  [  34 5-star reviews     ](https://wordpress.org/support/plugin/wp-rss-retriever/reviews/?filter=5)
 *  [  1 4-star review     ](https://wordpress.org/support/plugin/wp-rss-retriever/reviews/?filter=4)
 *  [  1 3-star review     ](https://wordpress.org/support/plugin/wp-rss-retriever/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/wp-rss-retriever/reviews/?filter=2)
 *  [  2 1-star reviews     ](https://wordpress.org/support/plugin/wp-rss-retriever/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/wp-rss-retriever/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/wp-rss-retriever/reviews/)

## Doprinositelji

 *   [ Travis ](https://profiles.wordpress.org/tjtaylor/)

## Podrška

Imate nešto za reći? Trebate pomoć?

 [Pogledaj forum podrške](https://wordpress.org/support/plugin/wp-rss-retriever/)

## Pokloni

Da li bi ste željeli da podržite napredovanje ovog proširenja?

 [ Pokloni ovom proširenju ](https://thememason.com/plugins/rss-retriever/)