WordPress Display Author Info


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <div class="author-box">
  2. <div class="author-pic"><?php echo get_avatar( get_the_author_email(), '80' ); ?></div>
  3. <div class="author-name"><?php the_author_meta( "display_name" ); ?></div>
  4. <div class="author-bio"><?php the_author_meta( "user_description" ); ?></div>
  5. </div>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.