list_authors( bool $optioncount = false, bool $exclude_admin = true, bool $show_fullname = false, bool $hide_empty = true, string $feed = , string $feed_image =  ): null|string

This function has been deprecated. Use wp_list_authors() instead.

Lists authors.

Description

See also

Parameters

$optioncountbooloptional

Default:false

$exclude_adminbooloptional

Default:true

$show_fullnamebooloptional

Default:false

$hide_emptybooloptional

Default:true

$feedstringoptional

Default:''

$feed_imagestringoptional

Default:''

Return

null|string

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

Changelog

VersionDescription
2.1.0Use wp_list_authors()
1.2.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.