list_authors()WP 1.2.0

Deprecated from version 2.1.0. It is no longer supported and can be removed in future releases. Use wp_list_authors() instead.

Lists authors.

No Hooks.

Return

null|String.

Usage

list_authors( $optioncount, $exclude_admin, $show_fullname, $hide_empty, $feed, $feed_image );
$optioncount(true|false)
-
Default: false
$exclude_admin(true|false)
-
Default: true
$show_fullname(true|false)
-
Default: false
$hide_empty(true|false)
-
Default: true
$feed(string)
-
Default: ''
$feed_image(string)
-
Default: ''

Notes

Changelog

Since 1.2.0 Introduced.
Deprecated since 2.1.0 Use wp_list_authors()

list_authors() code WP 6.5.2

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);
}