Lists authors.
Description
See also
Parameters
$optioncount
booloptionalDefault:
false
$exclude_admin
booloptionalDefault:
true
$show_fullname
booloptionalDefault:
false
$hide_empty
booloptionalDefault:
true
$feed
stringoptionalDefault:
''
$feed_image
stringoptionalDefault:
''
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
Version | Description |
---|---|
2.1.0 | Use wp_list_authors() |
1.2.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.