wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



list_authors › WordPress Function

Desde1.2.0
Obsoleto2.1.0
list_authors ( $optioncount = false, $exclude_admin = true, $show_fullname = false, $hide_empty = true, $feed = '', $feed_image = '' )
Parâmetros: (6)
  • (bool) $optioncount
    Required: No
    Padrão: false
  • (bool) $exclude_admin
    Required: No
    Padrão: true
  • (bool) $show_fullname
    Required: No
    Padrão: false
  • (bool) $hide_empty
    Required: No
    Padrão: true
  • (string) $feed
    Required: No
    Padrão: (empty)
  • (string) $feed_image
    Required: No
    Padrão: (empty)
Ver:
Retorna:
  • (null|string)
Definido em:
Codex:

Lists authors.



Fonte

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