Feb
11th

Promote Blogs to Boost Your Site Rank

Thanks for stopping by my personal blog on Marketing Technology! Over 50,000 visitors a month find my content worth returning for, so don't forget to subscribe to the Marketing Technology Blog RSS feed or to the Marketing Technology Email to have new content sent directly to your inbox. You may also find my other business blog helpful, Social Media Domination.

RSS is an amazing thing. Many people don’t recognize the power of blogs and how they can assist your site statistics. Here’s a great example of how you can promote other blogs AND boost your own site rank with Search Engines using RSS.

On Payraise Calculator, I replaced a vertical advertisement on the right-hand side of the site with list of blog posts that are speaking about pay increases. As soon as I did this, Payraise Calculator went from a Pagerank of 3 to a Pagerank of 5 and my site traffic doubled. Here’s a graphic - notice the change around the first of January:

Payraise Calculator Hits

Here’s how I did it.

  1. I did an advanced search of Technorati and saved the feed URL.
  2. I utilized a nice little PHP script called Magpie RSS by copying the files to an include directory on my blog in the base directory.
  3. I wrote the following code, setting the number of posts ($num_items), the maximum number of characters ($max_char), and the feed URL.

<?php
require_once(’includes/rss_fetch.inc’);
$num_items = 5;
$max_char = 90;
$rss = fetch_rss("http://feedURL");
echo "<p class=\"label\">Results:</p>";
echo "<ul>";
$items = array_slice($rss->items, 0, $num_items);
foreach ($items as $item) {
if (substr($item['title'], 0, 5)!="Links") {
$link = $item['link'];
$title = $item['title'];
$description = $item['description'];
$source = $item['source'];
if (strlen($description)>$max_char) {
$space = strpos($description, " ", $max_char);
$description = substr($description, 0, $space)."…";
echo "<li><a href=\"$link\" title=\"$source\" target=\"_blank\">$title</a>: $description</li>";
}
}
}
echo "</ul>";
?>

I also make sure that I have a link and logo back to Technorati to ensure they get some credit for my use of their search feed. This could be used for some incredible cross-promotion between blogs as well… you could post your favorite feeds within your blogroll so folks can actually see the latest posts for their site on your blog.

I also just modified Address Fix today to use this approach as well.

RSS feed | Trackback URI

9 Comments »

Comment by no imageDan F. (SezWho)
2007-02-12 10:29:59

Thank you for a great post. I just discovered your blog recently. Thanks for all the great insights.

Could you please post a blog glossary or a link to a blog glossary for all of us out there who would like to get up to speed. I’m still unclear about RSS, permalink, trackback, etc.

I am hoping to increase visitors to my website and it would help.

Thank you very much.

Rate this:
2.0
Comment by no imageDouglas Karr (SezWho)
2007-02-12 10:53:06

Dan,

Here’s a post on some of the terms you spoke of. I’m sure I’ve touched on RSS but will look to expand on that topic as well.

Thanks!

Rate this:
2.9
 
 
Comment by no imageSterling Camden (SezWho)
2007-02-12 18:52:54

What a cool idea, Doug!
Rate this:
2.9
Comment by no imageDouglas Karr (SezWho)
2007-02-12 19:04:20

Thanks, Sterling! It just goes to show how important dynamic content can be to search engine placement.
Rate this:
2.9
 
 
Comment by no imageMarios Alexandrou (SezWho)
2007-03-04 16:42:57

Hi Doug,

While it’s clear from your graph that you received more traffic I think you should be careful about attributing a change in PageRank to this effort. PageRank updates are few and far between and it is quite possible that one was underway just as you were adding the list of blogs.

Rate this:
2.8
Comment by no imageDouglas Karr (SezWho)
2007-03-04 17:44:42

Thanks, Marios!

I definitely do not try to qualify myself as an SEO expert so this is something I would respect your opinion on. With all other variables static with the exception of the blog posts (there used to be an advertisement there from Google), I made an assumption that this had the impact.

As well, I saw a similar jump in Address Fix.

Rate this:
2.9
 
 
Comment by no imageDean (SezWho)
2007-03-27 16:06:08

I’m going to try this out on my site and see what happens. I’ve got a few subjects areas I could choose so I’ll see what success I get :-)
Rate this:
2.9
 
Comment by no imageSindre Brudevoll (SezWho)
2007-05-30 06:58:53

Hello i also struggeling to get traffic to my blog and i saw your way on doing it and i must say it looks intresting to try it out. Im not sure about how to do this what you did, i dont have a clue i would be happy if you could help me a litle out here.

Looing forward to hear from you.

Sindre Brudevoll

Rate this:
1.6
 
2008-04-17 08:00:40

[...] of the box features. I’ve written in the past on how to publish a blog’s feed to give a boost to a site’s keyword density for improved search engine optimization - but this is how to do it right within [...]
 
Name (required)
E-mail (required - never shown publicly)
URI
Your Comment (smaller size | larger size)
You may use <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> in your comment.

My Comment Policy: I moderate comments. Please be patient:

  • Spam will happily be destroyed.
  • Use your real name, not some keywords. Otherwise it will be destroyed.
  • Mean comments aren't necessary. If I don't post them I will reply personally to let you know why.
  • Lewd comments will be edited, I don't want my readers leaving because of offensive content.
Great debate, criticism and colorful commentary is always appreciated and approved!