Display Author Information For Posts

Display Author Information For Posts

By using the codes below in your single.php file, you will pull the information from the post author’s profile on your blog and show a bit about them. This is especially useful if you’ve got a lot of authors on your blog.

how Display Author Information For Posts

< div id=”author-info”>

< div id=”author-image”>

< a href=”< ?php the_author_meta(‘user_url’); ?>“>

< ?php echo get_avatar( get_the_author_meta(‘user_email’), ‘80’, ‘’ ); ?>< /div>

< div id=”author-bio”>

< h4>Written by < ?php the_author_link(); ?>< /h4>

< ?php the_author_meta(‘description’); ?>

< /div>

< /div>