My Fast Blog

Fast money from fast blogging


Snow Explosion WP Theme v.1.0

Because is winter and a lot of people love winter is time to have your blog personalized for winter time. This help your readers to feel more confortable on your blog.
For installing theme you need to follow the next steps:
1. Unpack this archive
2. Copy in your plugins directory /fonts /let-it-snow /wp-cufon
3. Copy /snowexplosion in your [...]

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[ [...]