I have a MU setup with multiple blogs and a subdomain for each of them
bloga.example.com
blogb.example.com
blogc.example.com
etc
now i have the following code drawing out a nav successfully on the top level page (example.com) but when i go to the sub domain all i get out of my loop is "uncategorized".
<?php
$blogs = get_blog_list( 0, 'all' );
foreach( $blogs as $details ) {
?><li class="cat_item"><a href="http://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a></li><?php
}
?>
what am i missing for the subdomains to draw out a full nav that shows all other blogs?
i've seen a few plugins that allow viewing this nav from the top level site, but not when drilling down.