Team Groups
Team Groups is a custom taxonomy that lets you organize team members into categories. Common examples include Board of Directors, Leadership, Staff, Volunteers, or any grouping that fits your organization.
Creating Groups
- Go to Team Members > Team Groups.
- Enter a Name (e.g., “Board of Directors”) and an optional Slug (e.g., “board”). If you leave the slug empty, WordPress will generate one from the name.
- Click Add New Team Group.
Assigning Members to Groups
When editing a team member, use the Team Groups panel on the right side to check one or more groups. A member can belong to multiple groups.
Filtering by Group in the Shortcode
Use the group attribute with the group slug:
[our_team group="board"]
This displays only members assigned to the “board” group. You can place different shortcodes on different pages to show specific departments or teams:
// Leadership page
[our_team group="leadership" members_per_row="3" image_shape="circle"]
// Staff page
[our_team group="staff" members_per_row="4" box_style="bordered"]
Omit the group attribute to display all members regardless of group assignment.
