title: RSS Feed summary: Output records from your database as an RSS Feed. # RSS Feed Generating RSS / Atom-feeds is a matter of rendering a [api:SS_List] instance through the [api:RSSFeed] class. The [api:RSSFeed] class doesn't limit you to generating article based feeds, it is just as easy to create a feed of your current staff members, comments or any other custom [api:DataObject] subclasses you have defined. The only logical limitation here is that every item in the RSS-feed should be accessible through a URL on your website, so it's advisable to just create feeds from subclasses of [api:SiteTree].
If you wish to generate an RSS feed that contains a [api:DataObject], ensure you define a `AbsoluteLink` method on the object.
## Usage Including an RSS feed has two steps. First, a `Controller` action which responses with the `XML` and secondly, the other web pages need to link to the URL to notify users that the RSS feed is available and where it is. An outline of step one looks like: :::php $feed = new RSSFeed( $list, $link, $title, $description, $titleField, $descriptionField, $authorField, $lastModifiedTime, $etag ); $feed->outputToBrowser(); To achieve step two include the following code where ever you want to include the `` tag to the RSS Feed. This will normally go in your `Controllers` `init` method. :::php RSSFeed::linkToFeed($link, $title); ## Examples ### Showing the 10 most recently updated pages You can use [api:RSSFeed] to easily create a feed showing your latest Page updates. The following example adds a page `/home/rss/` which displays an XML file the latest updated pages. **mysite/code/Page.php** :::php Link() . "rss", "10 Most Recently Updated Pages"); } public function rss() { $rss = new RSSFeed( $this->LatestUpdates(), $this->Link(), "10 Most Recently Updated Pages", "Shows a list of the 10 most recently updated pages." ); return $rss->outputToBrowser(); } public function LatestUpdates() { return Page::get()->sort("LastEdited", "DESC")->limit(10); } } ### Rendering DataObjects in a RSSFeed DataObjects can be rendered in the feed as well, however, since they aren't explicitly [api:SiteTree] subclasses we need to include a function `AbsoluteLink` to allow the RSS feed to link through to the item.
If the items are all displayed on a single page you may simply hard code the link to point to a particular page.
Take an example, we want to create an RSS feed of all the `Players` objects in our site. We make sure the `AbsoluteLink` method is defined and returns a string to the full website URL. :::php ID ); } } Then in our controller, we add a new action which returns a the XML list of `Players`. :::php Link("players"), "Players"); } public function players() { $rss = new RSSFeed( Player::get(), $this->Link("players"), "Players" ); return $rss->outputToBrowser(); } } ### Customizing the RSS Feed template The default template used for XML view is `framework/templates/RSSFeed.ss`. This template displays titles and links to the object. To customise the XML produced use `setTemplate`. Say from that last example we want to include the Players Team in the XML feed we might create the following XML file. **mysite/templates/PlayersRss.ss** :::xml $Title $Link $Description.XML <% loop $Entries %> $Title.XML $Team.Title <% end_loop %> `setTemplate` can then be used to tell RSSFeed to use that new template. **mysite/code/Page.php** :::php public function players() { $rss = new RSSFeed( Player::get(), $this->Link("players"), "Players" ); $rss->setTemplate('PlayersRss'); return $rss->outputToBrowser(); }
As we've added a new template (PlayersRss.ss) make sure you clear your SilverStripe cache.
## API Documentation * [api:RSSFeed]