How To List All Authors from a blog in WordPress

How To List All Authors from a blog in WordPress

This article will tell you How To List All Authors from a blog in WordPress.

But what is the need to list the authors? And how can listing authors help us?

Firstly, It boosts the writers and makes them feel appreciated for their work.

Secondly, Listing all authors from a blog and giving more details about them on your website will build more trust between the visitors and the website. The visitors will recognize the authors as knowledge holders and experts. So they would like to revisit your website.

There may be different ways to explain how to list all authors from a blog in WordPress. In this section, we are either using plugins or doing it manually.

Listing authors from a blog by using plugins

A Simple Author Box

By default, Most WordPress themes can display the author’s profile picture with their bio below the article. 

Simple Author Box can help you add an author bio box below articles. You can customize it with your theme colors. Configure what you want to show, and you can add social sharing buttons with it.

List Authors WordPress Plugin 

This plugin lists the authors on your site. Moreover, it has some additional features. It can be used easily as a widget. You can put a list of authors in any area. Also, you can use its custom template tag to create a Page of authors list. The plugin allows showing the number of published posts by the author, sorting by name or post count.

Authors Widget WordPress Plugin   

This plugin shows a list, a dropdown, or a cloud of the authors. It has features to customize the number of posts and link their author feeds in the sidebar. The author cloud gives a unique feature to this plugin.

Author Grid WordPress Plugin  

It displays the avatar of the authors in a grid format. You can manage the image size, rows, columns. This plugin works well when you have avatars or Gravatars activated on your site.

Officers Directory Plugin  

This plugin is Designed for membership organizations. it works to display authors on the author page of your WordPress blog post. It also allows you to customize the role of each person, contact information, description of their work, and the ability to group the related authors or control the order in which they are displayed. 

Using Author Avatars List

Author Avatars List in WordPress is an easy tool that gives you various custom options, such as an author widget and shortcodes, to create a great author list page.

  • Install and activate “Author Avatars List.”

You don’t need to do settings. This plugin adds a new function to the WordPress editor and the new widget.

Listing authors from a blog manually by codes

You can also use a manual code for listing all authors from a blog.

You need to paste the following code where you want to display this list:

 <ul>

<?php wp_list_authors('exclude_admin=0&optioncount=1&show_fullname=1&hide_empty=1'); ?>

</ul>

The list of authors from blog posts will be displayed.

Display Author Avatar

For displaying the author avatar, we can use the author email with the function get_avatar() to display the author avatar.

<div class="authorAvatar">

 <?php echo get_avatar( $user->user_email, '128' ); ?>

</div>

Display Author Name

For displaying the author name, we can use a property value on the user object by using $user->display_name;

<h2 class="authorName"><?php echo $user->display_name; ?></h2>

Display Author Description

For displaying the author description, we can use the function get_user_meta() to get the author description.

<p class="authorDescrption"><?php echo get_user_meta($user->ID, 'description', true); ?>

Link To All Author Posts

For displaying a link to all the author posts, you can use the function get_author_posts_url().

<p class="authorLinks"><a href="<?php echo get_author_posts_url( $user->ID ); ?>">View Author Links</a>

To sum up, It feels great when you are recognized for your work. Indeed you have learned to list all authors from a blog in WordPress after reading this post. Listing is important on a multi-author blog. Consequently, The authors feel appreciated and motivated when their work is praised. 

Leave a Comment