wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



list_authors › WordPress Function

Depuis1.2.0
Dépréciée2.1.0
list_authors ( $optioncount = false, $exclude_admin = true, $show_fullname = false, $hide_empty = true, $feed = '', $feed_image = '' )
Paramètres: (6)
  • (bool) $optioncount
    Requis: Non
    Défaut: false
  • (bool) $exclude_admin
    Requis: Non
    Défaut: true
  • (bool) $show_fullname
    Requis: Non
    Défaut: false
  • (bool) $hide_empty
    Requis: Non
    Défaut: true
  • (string) $feed
    Requis: Non
    Défaut: (vide)
  • (string) $feed_image
    Requis: Non
    Défaut: (vide)
Voir:
Retourne:
  • (null|string)
Défini(e) dans:
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);
}