wpseek.com
A WordPress-centric search engine for devs and theme 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)
  • (bool) $optioncount
    Required: No
    Default: false
  • (bool) $exclude_admin
    Required: No
    Default: true
  • (bool) $show_fullname
    Required: No
    Default: false
  • (bool) $hide_empty
    Required: No
    Default: true
  • (string) $feed
    Required: No
    Default: (empty)
  • (string) $feed_image
    Required: No
    Default: (empty)
See:
Returns:
  • (null|string)
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);
}