Codex tools: Log in / create account
This function has been deprecated. That means it has been replaced by a new function or is no longer supported, and may be removed from future versions. All code that uses this function should be converted to use its replacement if one exists.
Contents |
Displays a list of the authors on a blog, and if desired, other information such as a link to each author's RSS feed.
<?php list_authors(optioncount, exclude_admin,
show_fullname, hide_empty,
'feed', 'feed_image'); ?>
Display the list of authors using default settings.
<?php list_authors(); ?>
This example causes the site's authors to display with the number of posts written by each author, excludes the admin author, and displays each author's full name (first and last name).
<?php list_authors(TRUE, TRUE, TRUE); ?>
Sally Smith (29)
Displays the site's authors without displaying the number of posts, does not exclude the admin, shows the full name of the authors, and does not hide authors with no posts. It does not display the RSS feed or image.
<?php list_authors(FALSE, FALSE, TRUE, FALSE); ?>
To use the query string to pass parameters to generate a list of authors, see Template_Tags/wp_list_authors
the_author,
the_author_description,
the_author_login,
the_author_firstname,
the_author_lastname,
the_author_nickname,
the_author_ID,
the_author_email,
the_author_url,
the_author_link,
the_author_icq,
the_author_aim,
the_author_yim,
the_author_msn,
the_author_posts,
the_author_posts_link,
list_authors,
wp_list_authors