This page redirects to an external site: https://developer.wordpress.org/reference/functions/list_authors/
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); ?>
the_author(), get_the_author(), get_the_author_id(), the_author_link(), get_the_author_link(), the_author_meta(), get_the_author_meta(), the_author_posts(), get_the_author_posts(), the_author_posts_link(), get_author_posts_url(), get_the_modified_author(), the_modified_author(), wp_dropdown_users(), wp_list_authors()