WPThumbs
Themes Plugins By purpose By industry Best-of lists Fix it guides
Free Plugin by required v4.0.0

Team List

Display your teammates anywhere on your WordPress site using this easy-to-use plugin.

Team List

The facts

Rating
5★ from 7
Active installs
100+
Price
Free
Last updated
17 Jul 2026
Added
Feb 2015
Requires WP
6.0
Tested up to
WP 7.0.4
Requires PHP
7.4
Downloads
16,282

Our analysis

AI-assisted

Team List is a WordPress plugin designed to create a team site using your WordPress users. It offers various display options, including a block, shortcode, template tag, or widget, allowing you to show blog authors on your site.

The plugin adds a checkbox to user profiles to control visibility in the team list. You can filter users by roles and customize the order in which they appear, making it suitable for sites that want to showcase team members or authors.

Best for: This plugin is suitable for websites that need to display team members or authors.

What it does well

  • Offers multiple display options: block, shortcode, widget
  • Allows role-based filtering of users
  • Easy visibility control via user profile checkbox
  • Supports WP_User_Query arguments

Where it falls short

  • Limited information on advanced features or customisation options

Verdict

Team List provides a straightforward solution for displaying team members on WordPress sites, though details on advanced features are limited.

From the developer

required's own description of Team List, lightly tidied.

Team List is a plugin that helps you to create a simple team site using your WordPress users with various display options. Either use a block, a shortcode, a template tag or the built-in widget to display blog authors.

After creating similar functionality for a couple of clients, we decided to roll our knowledge into this simple plugin. It’s really straightforward to use:

First of all, the plugin adds a small checkbox to the user profile in WordPress to toggle its visibility in the team list. This means you can decide for every user whether he should show up in the team list or not.

You can then use one of these ways to display the list anywhere on your site.

Action

Use the wp_team_list hook to directly display the users in your theme or plugin.

For example, you can show users of any role ordered by their name:

<?php
echo do_action( 'wp_team_list', array( 'role' => 'all', 'orderby' => 'name' ) );
?>

Note: Team List supports many of the arguments WP_User_Query supports.

Block

Use the “Team List” block in the block-based editor to display one or more team lists in any post types. You can select one or more roles and change the order. If you want you can also provide a link to a full team page.

Shortcode

Use the [wp_team_list] shortcode to display a team list in your posts. Supported arguments:

  • role – Filter users by roles (comma-separated).
    Use all to show users with any role.
    Default: administrator
  • orderby
    Default: post_count
  • order – Either asc or desc.
    Default: desc.
  • include – Filter users with specific IDs (comma-separated).
  • has_published_posts – Filter users with published posts.
    Either a comma-separated list of post types or true to filter by all post types.

Example:

[wp_team_list role="author" orderby="last_name" order="desc"]

Read the full description on the official page →

Tagged as