My Fast Blog

Fast money from fast blogging


Finally we have a new version of WPMU Fast Verification plugin. The new features add fast verification for Bing Webmaster Center & Alexa Siteowners.
So now you have one plugin for verify meta key for Google Webmaster Tools, Yahoo! SiteExplorer, Bing Webmaster Center & Alexa Siteowners
You can download from here.

This plugin will allow you to do fast verification for your WordPress MU websites with Google Webmaster Tools and Yahoo! SiteExplorer.
Is an easy and faster tool. Easy to install. Easy to use.
1. Download the plugin, extract in a folder
2. Upload fastverification.php to your wmpu plugins folder on your server, /wp-content/mu-plugins
3. Upload directory /fast-verification to your [...]

Fast Twitter Counter

Finally, I finish my work on this plugin. Is a very useful plugin for displaying yours twitter followers in wordpress sidebar.
For download first version: FastTwitterCounter
I hope the new version will work as a widget too and will have more display options in admin.
Please send me any sugestions to make this plugin better via e-mail.

To display last N updated blogs in Wordpress MU main page, just add code below to the sidebar.php of your theme:
<?php
$blogs = get_last_updated();
$blog_limit=10;
if( is_array( $blogs ) ) {
?>
<ul>
<?php
foreach( $blogs as $details ) {
$blog_limit = $blog_limit-1;
if ($blog_limit < 0 ) continue;
?><li><div class=”blogslinks”><a target=”_BLANK” href=”http://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>”><?php echo get_blog_option( $details[ [...]