show author image in posts

I know this is old, but I just came across it shortly before I came across the solution.

To display the author image inside the loop, just use this code:

<?php echo get_avatar( get_the_author_meta( 'ID' ) , 32 ); ?>

Where ’32’ is the size of the image. If it’s outside the loop, then just specify the author’s user ID.

Leave a Comment