This page redirects to an external site: https://developer.wordpress.org/reference/functions/get_most_active_blogs/
Returns an array of arrays containing basic information about the most recently updated blogs on this WPMU install.
<?php get_most_active_blogs( ); ?>
<?php
$blogs = get_most_active_blogs(10, false);
if( is_array( $blogs ) ) {
?>
<h2>Most Active Blogs</h2>
<ul>
<?php foreach( $blogs as $details ) {
?><li><a href="http://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a></li><?php
}
?>
</ul>
<?php
}
?>
This function does not return the date each blog was updated. Unlike get_blog_list() this function does not return the post count of each blog in the array. There is no option to change the order of the returned blogs through this function.