The simplest way to earn more feeds subscribers

If you’ve got a blog for some time and the number shown for acual feeds’ subscribers from Feedburner is very low, I’ll here show you how to boost this up with a simple trick.

get more feeds subscribers

Be you on Blogger or Wordpress, your blog is provided in different feeds version like the RSS or the Atom format and add to this your Feedburner’s burnt feed. What gets you a small number shown through Feedburner is that it isn’t your Feedburner’s burnt feed version that is provided and used when people subscribe to your blog but the other ones provided by your blog thus reducing the actual true number of subscribers shown.

When somebody types in your blog’s URL in a Feed Reader like Google Reader or Bloglines, depending on the service one of those versions may be given and added. Here’s an example I’ve taken from my friend Kyu’s blog. He burns his feed through Feedburner but what he doesn’t know is that if someone subscribe through a service like Bloglines, it’s the two version of his blogs’ feed that are provided and not the Feedburner’s one!

subscribing through blogline :
subscribing through bloglines
Different available feeds’ version shown :
available feeds shown
unlike kyu’s separated version, my unified feed’s version from Feedburner provided :
unified feed for blogosquare

What I will show you is unifying all your feeds in a single one and providing only that one to your readers and their Feed Readers so that you can :
1. control the way the feed gets displayed within Feedburner’s dashboard.
2. manage and have a clear account of readers you’ve through feeds.
3. obtain more feed’s subscribers.

The trick will have you only changing some simple code in the header part of your blog. I’ll first start for those on Wordpress then below details the procedure for Blogger users.

For Wordpress users

From your current themes’ folder, open your header.php file. Locate these lines of code at the very beginning of your header.php :

<link rel="alternate" type="application/rss xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />

You should actually just search for a line beginning with the Link tag containing the rel=”alternate” argument. When you’ve found this, just replace the link/php code found inside the href argument with your Feedburner’s one. That is from


<link rel="alternate" type="application/rss xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> 

to

<link rel="alternate" type="application/rss xml" title="RSS 2.0" href="link to burnt Feedburner feeds here" />

Replace all instances of the above, 3 in all most of the time to point to your Feedburner’s feeds link something in the form of http://feeds.feedburner.com/feedname.

That’s it! Save the header.php file and now check it through any Feed Reader. Try inputting your blog’s URL and look at the feed that is provided.

For blogger(new version) users

If you’re on Blogger, first get to your blog and do a View Page Source(in Firefox) by right-clicking anywhere on your blog and choosing it from the menu. Copy these lines, everything from the meta tag to the link tag, in all 7 lines of code and paste it in Notepad or somewhere else where we could use it afterwards :


<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='true' name='MSSmartTagsPreventParsing'/>
<meta content='blogger' name='generator'/>
<link rel="alternate" type="application/atom xml" title="Squarelab - Atom" href="http://blogosquare.blogspot.com/feeds/posts/default" />
<link rel="alternate" type="application/rss xml" title="Squarelab - RSS" href="http://blogosquare.blogspot.com/feeds/posts/default?alt=rss" />
<link rel="service.post" type="application/atom xml" title="Squarelab - Atom" href="http://www.blogger.com/feeds/33723874/posts/default" />
<link rel="EditURI" type="application/rsd xml" title="RSD" href="http://www2.blogger.com/rsd.g?blogID=33723874" />

Now login to your Blogger’s account and go to your Template tab. Make sure you’re using the new template system(with Widget and all things). Choose the Edit HTML subtab and locate this line of code just below the head tag :

<b:include data='blog' name='all-head-content'/>

before adding code

Delete it and replace it with the above code I’ve made you copied from your blog’s header’s page source. Now get to the links tag portion, put your Feedburner’s RSS link in the href argument thus pointing to your Feedburners feed. See below where I’ve replaced the default link with my feedburners feed :


<link rel="alternate" type="application/atom xml" title="Squarelab - Atom" href="http://feeds.feedburner.com/squarerss" />
<link rel="alternate" type="application/rss xml" title="Squarelab - RSS" href="http://feeds.feedburner.com/squarerss" />
<link rel="service.post" type="application/atom xml" title="Squarelab - Atom" href="http://feeds.feedburner.com/squarerss" />

after adding the code

Click Save Template down below to save the changes. Now try putting your blog’s URL into a Feed Reader and the ONLY feed’s link that is fetched is the one from Feedburner. Make sure though that you remove the appropriate line of code from your Blogger template that shows the Subscribe to Feeds subscribe section in blogger in the lower part of your blog or just point this to the the Feedburner’s version.

unified feeds in blogger :

unified feeds in blogger

That’s it. Now you’re providing your readers and their feed readers with only one version of your blog’s feed : the one burnt from Feedburner. Just stand by and watch your feed subscribers increase.

related external reading material

19 Responses so far