The Code
<div id=”author-bio”>
<h3>About The Author</h3>
<?php echo get_avatar( get_the_author_email(), ’80′ ); ?>
<h4><?php the_author(); ?> on <?php the_time(‘l, F jS, Y’) ?></h4>
<?php the_author_description(); ?>
</div><!–end author-bio–>
Breakdown:
<div id=”author-bio”> (the div tag is for styling in CSS)
<h3>About The Author</h3> (author header text)
<?php echo get_avatar( get_the_author_email(), ’80′ ); ?> (your gravatar image.. if you don’t have one visit gravatar.com)
<h4><?php the_author(); ?> (your display name) on <?php the_time(‘l, F jS, Y’) ?></h4> (the date stamp)
<?php the_author_description(); ?> (author bio)
</div><!–end author-bio–>
More resources:
- More tags: http://codex.wordpress.org/Post_Meta_Data_Section
- Author templates: codex.wordpress.org/Author_Templates
- Author bio code
- Author Gravatar:
- codex.wordpress.org/Using_Gravatars
- Gravatar.com
- http://themeshaper.com/2008/04/26/how-to-add-gravatars-for-the-post-author-in-wordpress/
  Sign up for the Newsletter
  Follow DesaraeV on Twitter
  Subscribe to the RSS Feed








