Jump to Content

Creating an RSS Feed

This page provides instructions for how to create an RSS and how to set up this facility in a webpage on your site.

You will need to create an XML type file. The XML file is the source file that the RSS readers and browsers check for updated content. This can be done in SharePoint Designer by following these instructions

<rss version="2.0">
<channel>
<title>UniSA News Releases (replace this with the title of your website)</title>
<link>http://www.unisa.edu.au/news (replace this with the link to your website default home page)</link>
<description>News releases from the UniSA (provide a description of your website)</description>
<language>en-au</language>
<item>
<title>Title of the news release</title>
<link>URL of the news release</link>
<description>First paragraph or description of news release.</description>
<pubDate>01 Jan 2008</pubDate>
</item>
<item>
<title>Title of the news release</title>
<link>URL of the news release</link>
<description>First paragraph or description of news release.</description>
<pubDate>01 Jan 2008</pubDate>
</item>
</channel>
</rss>

Updating the content

The code within the <item> </item> tags is the content that will be updated. As you have new content to announce you can copy this block of code, paste it at the top of the list and make appropriate changes. You can have as many of these items as you wish or choose to limit the number - removing the oldest in the list as you add new items. The link provided in this section of code is to the updated or new webpage, in this case the news release.

top^