wpseek.com
				A WordPress-centric search engine for devs and theme authors
			list_authors is deprecated since version 2.1.0!
Alternative: wp_list_authors()
Alternative: wp_list_authors()
list_authors › WordPress Function
Since1.2.0
Deprecated2.1.0
› list_authors ( $optioncount = false, $exclude_admin = true, $show_fullname = false, $hide_empty = true, $feed = '', $feed_image = '' )
| Parameters: (6) | 
 | 
| See: | |
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Lists authors.
Source
function list_authors($optioncount = false, $exclude_admin = true, $show_fullname = false, $hide_empty = true, $feed = '', $feed_image = '') {
	_deprecated_function( __FUNCTION__, '2.1.0', 'wp_list_authors()' );
	$args = compact('optioncount', 'exclude_admin', 'show_fullname', 'hide_empty', 'feed', 'feed_image');
	return wp_list_authors($args);
}