Forum Moderators: phranque

Message Too Old, No Replies

RSS Feeds in Blogger

         

alecsing

1:52 pm on Sep 29, 2006 (gmt 0)

10+ Year Member



I have started a blog in blogger. I want to add RSS Feeds so that people are informed about the new topics posted. Please inform me how to do it as I know nothing about publishing RSS Feeds.

A step-by-step tutorial will be very welcome

Thank You

AlecSing

JAB Creations

7:46 pm on Sep 29, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



The HTML...
<head>
<title></title>
<link href="http://www.example.com/news.xml" rel="alternate" title="RSS 2.0 News Feed" type="application/rss+xml" />
</head>

The RSS...

<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>Example Widgets News</title>
<link>http://www.example.com/</link>
<description>News posted by cool people who obsess over widgets.</description>

<item>
<title>News Item One</title>
<pubDate>Mon, 10 Jul 2006 12:00:00 -0500</pubDate>
<guid>http://www.example.com/news.php#news-7-10-2006-2</guid>
<link>http://www.example.com/news.php#news-7-10-2006-2</link>
<description>We created a new widget and you just have to read about it!</description>
</item>

<item>
<title>News Item Two</title>
<pubDate>Sun, 02 Jul 2006 12:00:00 -0500</pubDate>
<guid>http://www.example.com/news.php#news-7-02-2006-2</guid>
<link>http://www.example.com/news.php#news-7-02-2006-2</link>
<description>We have just opened our widgets website and we want you to check it out!</description>
</item>

</channel>
</rss>

The RSS Validator...
[feedvalidator.org...]

My example uses valid code. Also this RSS validator is very effective even catching wrong times and dates.

- John