I saw a post by Aequitas where he mentioned his blog (aglocohype blog) and I saw his RSS feed on the top right hand side. It reads Subscribe to: then it has 2 RSS icons one that says posts and one that says comments.
How did he do that?
I did sett up an RSS feed but it only has one RSS icon and it reads Subscribe in a reader. I know I can change that text but how do I get the set up that Aequitas has?
Its quiet easy blogger has two types of RSS feeds one for comments and one for posts, here is what you can do to make that happen.
On the older blogger templates you can include the following code this will display all of your sites RSS feed information, you need to put this in between your head tags
Code:
<BlogSiteFeed>
<link rel="alternate"
type="application/rss+xml"
title="RSS"
href="<$BlogSiteFeedUrl$>" />
</BlogSiteFeed>
What this will do is output the following code:
Code:
<link rel="alternate" type="application/atom+xml" title="Agloco Hype - Atom" href="http://aglocohype.blogspot.com/feeds/posts/default" />
<link rel="alternate" type="application/rss+xml" title="Agloco Hype - RSS" href="http://aglocohype.blogspot.com/feeds/posts/default?alt=rss" />
<link rel="service.post" type="application/atom+xml" title="Agloco Hype - Atom" href="http://www.blogger.com/feeds/38702424/posts/default" />
As you can see it displays both RSS and ATOM type feeds, the one you'll be dealing with is mainly RSS and it only shows your posts the following line shown here
Code:
<link rel="alternate" type="application/rss+xml" title="Agloco Hype - RSS" href="http://aglocohype.blogspot.com/feeds/posts/default?alt=rss" />
Edit this line to look like this
Code:
<link rel="alternate" type="application/rss+xml" title="Agloco Hype - RSS" href="http://aglocohype.blogspot.com/feeds/comments/default?alt=rss" />
Notice the slight difference, I just changed posts to comments and now you have a link to your RSS comments on your blog.
You can take it one step further to create a feedburner feed like I have done, it just helps organize your RSS a bit better.
To make this all super easy for anyone to understand just create a hyperlink to your post or your comments:
Example:
Code:
<a href="http://aglocohype.blogspot.com/feeds/comments/default?alt=rss">Comments</a>
<a href="http://aglocohype.blogspot.com/feeds/posts/default?alt=rss">Posts</a>
If this completely confuses you give me the link to your blog and I'll create both links for you so all you need to do is copy and paste them where ever you like to make it work.