What code to put to display list all blogs?
-
Hi,
I am trying to edit my main page so that it will display a list of blogs currently on my site, ordered by popularityWhat is the proper code for it.
So far I have:<?php foreach( $blogs as $details ) { ?><li><a href="https://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a></li><?php
But all this does is display the blog name and sorted by when last updated, I want it to display blog name, amount of posts, and sort by popularity
Thanks
- The topic ‘What code to put to display list all blogs?’ is closed to new replies.