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