Generate List of Authors and Contributors in WordPress
If you run a Multi Author Blog and wish to list all the Author and contributors name in a list manner then following code can help you easily.
Simple paste the following code anywhere in your theme where you want Author list to be appeared. For example open sidebar.php and paste the following code.
1 2 3 | <ul> <?php wp_list_authors(‘exclude_admin=0&optioncount=1&show_fullname=1&hide_empty=1′); ?> </ul> |




