Get List of all the Authors

How could i get List of all the Authors?

author.php file shows the Information about Individual Author.

for example: http://domain.com/author/bj

that returns the Bj’s Profile.

if i enter http://domain.com/author it returns 404 Not Found

Author page shows author’s avatar, Author’s Name and description.

how can i list out all the authors?

Need Help!

3 Answers
3

You can display author’s list by using function wp_list_authors

for more info : http://codex.wordpress.org/Function_Reference/wp_list_authors

And for author Template Hierarchy see below link

http://codex.wordpress.org/Author_Templates

Leave a Comment