Saturday, September 28, 2013

How to create RSS feed for your website?

Here are the steps:

Prepare a list of your items in any an text editor.

Add all necessary tags to identify your RSS feed and save it as xml file.

Validate your xml using website: http://feedvalidator.org/

Finally, Submit your RSS feed.


Sample RSS xml file:

<?xml version= "1.0"?>
<rss version= "2.0">
<channel>
<item>
<title> title1 </title>
<description> sample description </description>
<link>http://</link>
</item>

.....


</rss>
</xml>


No comments:

Post a Comment