wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



list_authors › WordPress Function

Seit1.2.0
Veraltet2.1.0
list_authors ( $optioncount = false, $exclude_admin = true, $show_fullname = false, $hide_empty = true, $feed = '', $feed_image = '' )
Parameter: (6)
  • (bool) $optioncount
    Erforderlich: Nein
    Standard: false
  • (bool) $exclude_admin
    Erforderlich: Nein
    Standard: true
  • (bool) $show_fullname
    Erforderlich: Nein
    Standard: false
  • (bool) $hide_empty
    Erforderlich: Nein
    Standard: true
  • (string) $feed
    Erforderlich: Nein
    Standard: (leer)
  • (string) $feed_image
    Erforderlich: Nein
    Standard: (leer)
Siehe:
Gibt zurück:
  • (null|string)
Definiert in:
Codex:

Lists authors.



Quellcode

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