Page is a not externally linkable
Swanny007 - 7:17 pm on Mar 12, 2011 (gmt 0)
[edited by: Swanny007 at 7:19 pm (utc) on Mar 12, 2011]
Here's a copy and paste of my file with details removed.... Call the file rss.xml, put it in the site's root. Then link to it from the home page or wherever so people can get to it.
The first part of the file doesn't change, it just sets up the feed. After that there are "items" which are the "entries" or "site additions". Each new page goes to the top of that list of "items".
Let me know if you have questions.
<?xml version="1.0"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>WEBSITE Updates</title>
<link>http://www.example.com/</link>
<description>WEBSITE Updates</description>
<language>en-us</language>
<pubDate>23 Nov 2008 21:29:00 CST</pubDate>
<lastBuildDate>26 Nov 2008 20:00:00 CST</lastBuildDate>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<generator>Weblog Editor 2.0</generator>
<managingEditor>webmaster@example.com (WEBSITE Webmaster)</managingEditor>
<webMaster>webmaster@example.com (WEBSITE Webmaster)</webMaster>
<atom:link href="http://www.example.com/rss.xml" rel="self" type="application/rss+xml" />
<item>
<title>Page title goes here (most recent article)</title>
<link>http://www.example.com/page5</link>
<description>Page description goes here</description>
<pubDate>28 Mar 2010 21:05:00 CST</pubDate>
<guid>http://www.example.com/page5</guid>
</item>
<item>
<title>Second most recent article's page title</title>
<link>http://www.example.com/page4.html</link>
<description>Page description goes here</description>
<pubDate>29 Nov 2009 16:32:00 CST</pubDate>
<guid>http://www.example.com/page4.html</guid>
</item>
<item>
<title>Page title goes here</title>
<link>http://www.example.com/page3.php</link>
<description>Page description goes here</description>
<pubDate>26 Nov 2009 20:00:00 CST</pubDate>
<guid>http://www.example.com/page3.php</guid>
</item>
<item>
<title>Page title goes here</title>
<link>http://www.example.com/page2.html</link>
<description>Page description goes here</description>
<pubDate>24 Nov 2009 19:31:00 CST</pubDate>
<guid>http://www.example.com/page2.html</guid>
</item>
<item>
<title>Oldest article</title>
<link>http://www.example.com/page1</link>
<description>Page description goes here</description>
<pubDate>23 Nov 2009 18:00:00 CST</pubDate>
<guid>http://www.example.com/page1</guid>
</item>
</channel>
</rss>