Family Encyclopedia >> Electronics

How to list all the authors of your WordPress blog

On multi-author blogs, it's good to list all the authors, so the reader knows who's behind the site. We have written a guide with 21 great plugins to run a multi-author WordPress blog efficiently. In this tutorial, we show you some manual code that you can use to list all the authors on your blog.

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

That will display the list. Now here are some parameters so you can adjust and modify the code according to your needs.

  • exclude_admin:0 (include admin name in authors list) / 1 (exclude admin name from list)
  • optioncount:0 (No post count against author name) / 1 (Show post count against author name)
  • show_fullname:0 (show first name only) / 1 (show author's full name)
  • hide_empty:0 (show authors with no posts) / 1 (show authors who have one or more posts)

The plugin called List Authors Widget does it for you, but if you want to do it manually above is the way you can do it.