Somebody asked on Twitter for a way to add author avatars to posts, so this tutorial is partially in response to that. It’s also a helpful community building tool, because readers know where they are and who is speaking to them. This is a quick hack that will instantly add more personality to your posts, especially when you have lot of blogs running on your network and you’d like to give more detail about the authors. Just pop this little hack into your functions.php file and voila! You’ll get a little something like this:

I want to credit Lam Nguyen for this helpful little hack that I found in his post on this topic.
function get_author_bio ($content=''){
global $post;
$post_author_name=get_the_author_meta("display_name");
$post_author_description=get_the_author_meta("description");
$html="<div class='clearfix' id='about_author'>\n";
$html.="<img width='80' height='80' class='avatar' src='http://www.gravatar.com/avatar.php?gravatar_id=".md5(get_the_author_email()). "&default=".urlencode($GLOBALS['defaultgravatar'])."&size=80&r=PG' alt='PG'/>\n";
$html.="<div class='author_text'>\n";
$html.="<h4>Author: <span>".$post_author_name."</span></h4>\n";
$html.= $post_author_description."\n";
$html.="</div>\n";
$html.="<div class='clear'></div>\n";
$content .= $html;
return $content;
}
add_filter('the_content', 'get_author_bio');
This hack will need to be present in the functions.php file of each of the themes that you make available to your users on your site, if you want the author bio section to show on their posts as well.
After you add this little piece of code, use your Firebug or whatever other tool you like, to target your selectors so that you can make the bio box pretty with CSS. Enjoy!
To get a wiki up and running you used to need to install Mediawiki and toil away for days configuring it... not any more! This plugin gives you *all* the functionality you want from a wiki, in WordPress!!!
Find out more
Simply insert google maps into posts, sidebars and pages - show directions, streetview, provide image overlays and do it all from a simple button and comprehensive widget.
Find out more
No javascript required, no third part chat engine, just fully featured chat right in your own database on your own WP sites - couldn't be easier.
Find out more
Out of all the WordPress ecommerce plugins available, this has got to be the winner - easy to configure, powerful functionality, multiple gateways and more. A simply brilliant plugin!
Find out more
Now there's no need to pay for a third party service to sign up, manage and send beautiful email newsletters to your subscriber base - this plugin has got the lot.
Find out more
If you're thinking about starting a paid, or just private, membership site then this is truly the plugin you've been looking for. Easy to use, massively configurable and ready to go out of the box!
Find out more
If you've ever wondered how you could offer a paid site management and hosting service, then this is the plugin for you. Offer a freemium or paid service, for any niche you like, it's powered Edublogs.org to success already!
Find out more
Fully integrated with the SEOMoz API, complete with automatic links, sitemaps and SEO optimization of your WordPress setup - this is the only plugin you need to help you rank your site number 1 on Google - nothing else compares.
Find out more
It's now incredibly easy to start your own Q&A site using nothing more than WordPress - The Q&A plugin simply and brilliantly transforms any site, or page, into a perfect support or Q&A environment.
Find out more
There is a missing closing div in there, made my template bug and me panic for a sec ^^
Anyhow, nice hack, thanks!
Thanks! Where is the missing ? I am having similar layout issues.
Thanks for the tip! If I wanted to link the author’s name or gravatar to their BuddyPress profile, how would I do that?