Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Created October 3, 2012 04:47
Show Gist options
  • Save snowman-repos/3825056 to your computer and use it in GitHub Desktop.
Save snowman-repos/3825056 to your computer and use it in GitHub Desktop.
Wordpress: Display Author Info
<div class="author-box">
<div class="author-pic"><?php echo get_avatar( get_the_author_email(), '80' ); ?></div>
<div class="author-name"><?php the_author_meta( "display_name" ); ?></div>
<div class="author-bio"><?php the_author_meta( "user_description" ); ?></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment