List of all authors avatars

I'm looking for a way to retrieve all authors with their avatar.

I know there is a way to get an authors avatar but I want to get all avatars of all the authors :)

echo get_avatar(get_the_author_meta('ID'), '160');

I tried to combine this command with wp_list_authors() but didn't find a way.

How can I retrieve a list of all authors with their avatars?

Thank you!

Topic list-authors avatar author author-template Wordpress

Category Web


I would loop through an array with the authors and then get their avatar and save them in a different array. You can use get_users() to get the users and you already know how to get their avatar.

You can get users using get_users() by giving it an array with arguments to specify what you need. You can see the available arguments to pass in the documentation for get_users(). This will return an array with users to loop through.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.