Tag Archive | "General"

Tags: General, Make Money Online

Inserting ads in RSS feeds.

Posted on 13 June 2009 by Raman

Inserting ads in RSS feeds.

Inserting Ads in your blog’ RSS feed can be a good idea to boost up your earnings. You may have seen many peoples doing this.

If you publish your feeds with FeedBurner (now acquired by Google) then you can easily show Adsense ads there at by using Adsens for feeds.

And if you want to show other ads in your RSS feeds, then you can do this by modifying the functions.php file (if you dont have one create it).

<?php
function insertAds($content) {
$content = $content.’<hr /><a href=”http://webmasters-blog.com/”>Keep visiting webmasters-blog.com</a><hr />’;
return $content;
}
add_filter(’the_excerpt_rss’, ‘insertAds’);
add_filter(’the_content_rss’, ‘insertAds’);
?>

Here, we first create a function called insertAds(), which concatenate a code containing our advertisment to the $content variable, which contains the content of the post.
Then, we use the add_filter() function to overwrite the the_content_rss() function with our insertAds() function. We use another filter to overwrite the_excerpt_rss() function as well.
That’s all, your rss feeds now displays your ads!

If you enjoyed this post, make sure you subscribe to my RSS feed!

Comments (2)

Tags: General

Total number of sites as on May 2009.

Posted on 08 June 2009 by Raman

The World Wide Web is continuously expanding day-by-day. The total number of sites over internet has reached 235 Million as on May 2009( as per Netcraft Survey)

total-number-of-sites

This count was 231 Million in the earlier month survey.

But this count is not completely accurate, as it takes into account the responses from the users using Netcraft toolbar.

So its just like Alexa traffic rankings.

If you enjoyed this post, make sure you subscribe to my RSS feed!

Comments (3)

Affiliate Theme Advertise Here
Advertise Here