PHPackages                             agencyleroy/rss-feeds - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. agencyleroy/rss-feeds

ActiveCraft-plugin[Utility &amp; Helpers](/categories/utility)

agencyleroy/rss-feeds
=====================

RSS feed from rss.app

3.0.0(5mo ago)01.1kMITPHPPHP ^8.2CI failing

Since Mar 2Pushed 5mo ago6 watchersCompare

[ Source](https://github.com/agencyleroy/rssfeeds)[ Packagist](https://packagist.org/packages/agencyleroy/rss-feeds)[ RSS](/packages/agencyleroy-rss-feeds/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (15)Used By (0)

Rss Feeds
=========

[](#rss-feeds)

Rss Feeds plugin for Craft CMS 3.x
----------------------------------

[](#rss-feeds-plugin-for-craft-cms-3x)

Working with rss feed from rss.app (Single, multiple feeds are supported as well as bundles)

Requirements
------------

[](#requirements)

This plugin requires Craft CMS 3.0.0-beta.23 or later.

Using Rss Feeds
---------------

[](#using-rss-feeds)

1. Create a feed in [rss.app](https://rss.app/). Adjust the feed settings if needed.
2. Copy the Feed Url.
3. In the plugin settings, you can
4. Activate/Deactivate the whole feed
5. Add multiple feeds in the table - Feed type: Choose what services the feed is getting data from. This should be the same as the one in rss.app. If you want to get a feed from the multiple service providers, Make a feed on rss.app with bundle type. - Feed Url: The feed's url from rss.app - Activate/Deactivate the selected row

### To select an individual feed

[](#to-select-an-individual-feed)

4. Create a field from `/admin/settings/fields` with `socialFeed` field type
5. Select a feed to display in the frontend
6. `{% set feed = craft.rssFeeds.findFeedByUrl(entry.feed) %}` to get the type of the feed and the array of the feed

Available functions
-------------------

[](#available-functions)

- findFeed($serviceName = null): Returns an array of the feed items. Service provider can be specified in the parameter which should be chosen from the feed type. Default is null. #### Available Properties

    [](#available-properties)

    - serviceName: Displays the service provider's name
    - authorTitle: Displays the author's title. This can be changes in rss.app
    - authorLink: Link to the author's feed in the provider
    - feedTitle: Displays the title or the description of the feed item
    - feedLink: Link to the feed item
    - feedPubDate: Datetime object of the time when the feed item is published.
    - timestamp: Timestamp of when the feed item is published
    - feedImage: Url of the image in the feed item
- isActive(): Returns boolean; whether the whole feed is activated.

Twig code examples
------------------

[](#twig-code-examples)

### How to find individual feeds

[](#how-to-find-individual-feeds)

```

  {% for item in craft.rssFeeds.findFeed('instagram') %}
    {{ item.serviceName }}
    {{ item.authorTitle }}
    {{ item.authorLink }}
    {{ item.feedTitle }}
    {{ item.feedLink }}
    {{ item.feedPubDate|date('d.m.y') }}
    {{ item.timestamp }}
    {{ item.feedImage }}
  {% endfor %}

```

### After creating the socialFeed field type and fetching the details on the frontend(Twig)

[](#after-creating-the-socialfeed-field-type-and-fetching-the-details-on-the-frontendtwig)

```

  {% set socialfeed = craft.rssFeeds.findFeedByUrl(entry.feed) %}
  {% set feedArray = socialfeed.feed|slice(0,4) %}
  {% for feed in feedArray %}
    {% if feed.type == 'twitter' %}
      {# Frontend code for twitter feed #}
    {% else if feed.type == 'intagram' %}
      {# Frontend code for instagram feed #}
    {% else %}
      {# Frontend code for default feed #}
    {% endif %}
  {% endfor %}

```

### How to find all enabled feed

[](#how-to-find-all-enabled-feed)

```

{% set feeds = craft.rssFeeds.findFeed() %}
{% for item in feeds %}
  ...
{% endfor %}

```

Installation with Composer
--------------------------

[](#installation-with-composer)

Install the plugin by running:

```
foo@bar:~$ composer require agencyleroy/rss-feeds
```

Brought to you by [Agency leroy](https://agencyleroy.com)

###  Health Score

47

—

FairBetter than 94% of packages

Maintenance69

Regular maintenance activity

Popularity17

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity76

Established project with proven stability

 Bus Factor1

Top contributor holds 53.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~189 days

Recently: every ~402 days

Total

12

Last Release

179d ago

Major Versions

1.1.3 → 2.0.02023-11-14

1.1.4.x-dev → 3.0.02025-11-12

### Community

Maintainers

![](https://www.gravatar.com/avatar/3a0f177ab0ac1a438506078d7916ebec391b4193c0b822489b64e15f8872484c?d=identicon)[agencyleroy](/maintainers/agencyleroy)

---

Top Contributors

[![aschanMarcus](https://avatars.githubusercontent.com/u/4448779?v=4)](https://github.com/aschanMarcus "aschanMarcus (7 commits)")[![niklasjk](https://avatars.githubusercontent.com/u/16792871?v=4)](https://github.com/niklasjk "niklasjk (6 commits)")

---

Tags

cmsCraftcraftcmscraft-pluginrss feeds

### Embed Badge

![Health badge](/badges/agencyleroy-rss-feeds/health.svg)

```
[![Health](https://phpackages.com/badges/agencyleroy-rss-feeds/health.svg)](https://phpackages.com/packages/agencyleroy-rss-feeds)
```

###  Alternatives

[verbb/navigation

Create navigation menus for your site.

90683.7k17](/packages/verbb-navigation)[verbb/formie

The most user-friendly forms plugin for Craft.

101372.9k40](/packages/verbb-formie)[verbb/comments

Add comments to your site.

13753.1k](/packages/verbb-comments)[verbb/tablemaker

Create customizable and user-defined table fields.

40168.8k1](/packages/verbb-tablemaker)[supercool/tablemaker

Create customizable and user-defined table fields.

40141.7k](/packages/supercool-tablemaker)[pennebaker/craft-architect

CraftCMS plugin to generate content models from JSON/YAML data.

72148.5k5](/packages/pennebaker-craft-architect)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
