Showing posts with label RSS feed template. Show all posts
Showing posts with label RSS feed template. Show all posts

Tuesday, September 18, 2018

Template that can be utilized for an RSS feed


The following is a template that can be utilized for an RSS feed - enter your own text - then save the file with a .xml extension (example yoursite_rss.xml) and place on the root of your website so users can find it easily. Typically add new entries to your content daily, weekly or monthly to keep content fresh. Additionally, link to the RSS feed xml file from your homepage.

< ?xml version="1.0" ?>
<rss version="2.0">
< channel>
< item>
<title>Title of first entry</title>
<description>Description of first entry</description>
<link>http://www.your_website/</link>
</item>
< item>
<title>Title of second entry</title>
<description>Description of second entry</description>
<link>http://www.your_website</link>
</item>
< /channel>
< /rss>