On some blogs it is important to post on a regular basis, but this can be difficult unless blogging is your full time job.
For a single person to regular post awesome blog posts everyday can take up so many hours. Therefore many blogs have a number of authors, this helps keep the content regular and high quality to ensure a better blog.
If a blog has many authors you may want a page to display all the authors which make up your blog.
Displaying all the blogs authors can easily be done on a wordpress page.
Use the following snippet to display a list of your blogs authors.
<ul>
<?php wp_list_authors('exclude_admin=0&optioncount=1&show_fullname=1&hide_empty=1'); ?>
</ul>
