I'm trying to show a list of blogs with the most posts along with the gravatar of the blog admin using the get_most_active_blogs function.
This code on its own spits out the email:
<?php
echo get_blog_option( $details[ 'blog_id' ], 'admin_email' ) ?>
How do I combine that above with
<?php echo get_avatar( ?????? , 64 ); ?>
I've tried lots of combinations but I'm not getting anywhere.
Thanks.