Title: Contributor Team Matcher
Author: Maciej (Matt) Pilarski
Published: <strong>July 10, 2026</strong>
Last modified: July 10, 2026

---

Search plugins

![](https://s.w.org/plugins/geopattern-icon/find-your-team.svg)

# Contributor Team Matcher

 By [Maciej (Matt) Pilarski](https://profiles.wordpress.org/gomp/)

[Download](https://downloads.wordpress.org/plugin/find-your-team.1.0.7.zip)

 * [Details](https://wordpress.org/plugins/find-your-team/#description)
 * [Reviews](https://wordpress.org/plugins/find-your-team/#reviews)
 *  [Installation](https://wordpress.org/plugins/find-your-team/#installation)
 * [Development](https://wordpress.org/plugins/find-your-team/#developers)

 [Support](https://wordpress.org/support/plugin/find-your-team/)

## Description

Contributor Team Matcher presents contributors with a short quiz and uses a tag-
based scoring algorithm to recommend the Make WordPress contribution team that best
fits their profile. The top match is displayed as a prominent card; four runner-
up teams are shown below it.

The plugin is fully configurable from the WordPress admin — questions, answers, 
teams, and tag weights can all be edited, added, or removed without touching code.

**How the matching algorithm works**

 1. The contributor answers all quiz questions.
 2. Each selected answer contributes a list of tags to a shared pool.
 3. Tags are tallied (duplicates increase the count).
 4. Every team is scored: `score += tag_weight x tag_count` for each matching tag.
 5. Teams are sorted by score. The highest scorer is the primary recommendation; the
    next four are shown as secondary suggestions.

**Default teams**

The plugin ships with 23 Make WordPress contribution teams: Core, Design, Mobile,
Accessibility, Polyglots, Support, Documentation, Themes, Plugins, Community, Meta,
Training, Test, TV, Marketing, CLI, Hosting, Tide, Openverse, Photos, Performance,
Sustainability, and Security.

## Blocks

This plugin provides 1 block.

 *   Contributor Team Matcher Quiz Embed the Contributor Team Matcher contributor
   quiz. Renders the [contributor_team_matcher] shortcode.

## Installation

 1. Upload the `find-your-team` folder to `/wp-content/plugins/`, or install the plugin
    through the **Plugins  Add New Plugin** screen in your WordPress admin.
 2. Activate the plugin through the **Plugins** screen in WordPress.
 3. Embed the quiz on any page or post using the `[conttema_quiz]` shortcode, or insert
    the “Contributor Team Matcher” block in the Block Editor.
 4. Configure questions and teams under the **Contributor Team Matcher** top-level 
    menu in the WordPress admin.

## FAQ

### How do I display the quiz?

Add the shortcode `[conttema_quiz]` to any page, post, or widget, or insert the 
Contributor Team Matcher block in the Block Editor. The block is server-side rendered
and shows a styled placeholder in the editor.

### Can I change the questions and teams?

Yes. Everything is editable from the **Contributor Team Matcher** admin menu, which
has three tabs: Questions, Teams, and Usage. No code changes are required. You can
also reset questions and teams back to their defaults.

### Are single- and multi-select questions supported?

Yes. Each question can be set independently to a single answer (radio) or multiple
answers (checkbox, up to 3 selections).

### Does the plugin require jQuery?

No. The frontend is written in vanilla JavaScript with no jQuery dependency.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“Contributor Team Matcher” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Maciej (Matt) Pilarski ](https://profiles.wordpress.org/gomp/)

[Translate “Contributor Team Matcher” into your language.](https://translate.wordpress.org/projects/wp-plugins/find-your-team)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/find-your-team/), check
out the [SVN repository](https://plugins.svn.wordpress.org/find-your-team/), or 
subscribe to the [development log](https://plugins.trac.wordpress.org/log/find-your-team/)
by [RSS](https://plugins.trac.wordpress.org/log/find-your-team/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.0.7

 * Standardised the plugin text domain to `find-your-team` to match the WordPress.
   org slug.
 * Renamed internal identifiers from the `CTM_` / `ctm_` prefix to `CONTTEMA_` /`
   conttema_` — constants, class names, include filenames, nonces, and AJAX actions
   on the PHP side, and the localized data object (`ctmData` to `conttemaData`) 
   on the JavaScript side.
 * No functional or behavioural changes; this is a naming/consistency release.

#### 1.0.6

 * Fix: The admin tab links (Questions / Teams / Usage) now point at the top-level`
   admin.php?page=contributor-team-matcher` panel instead of `options-general.php`,
   so navigating between tabs no longer bounces to the Settings screen.
 * Docs: README updated to reference the top-level menu rather than “Settings  Contributor
   Team Matcher”.

#### 1.0.5

 * Feature: Gutenberg block `contributor-team-matcher/quiz` registered via `block.
   json`. Editors can insert the quiz from the block inserter without typing the
   shortcode. The block is server-side rendered and shows a styled placeholder in
   the editor.
 * Bump: Version synced across plugin header, version constant, and readme.

#### 1.0.4

 * Fix: Moved hidden quiz inputs inside their `<label>` elements so custom radio/
   checkbox indicators render correctly in all browsers.
 * Fix: Extended CSS to hide native `input[type="radio"]` elements and style them
   with the custom dot indicator (circular for radio, square for checkbox).
 * Fix: Switched CSS selectors to `:has()` now that inputs are descendants of labels
   rather than preceding siblings.
 * Code quality: Full pass against WordPress Coding Standards (WordPress-Extra +
   WordPressVIPMinimum) — 0 errors, 0 warnings.
 * Bump: Plugin header version synced with the version constant.

#### 1.0.3

 * Feature: Per-question Answer Type setting in the admin. Each question can be 
   independently set to Single answer (radio) or Multiple answers (checkbox, up 
   to 3).
 * Admin UI: Answer Type toggle added to each question accordion item, with a “Single”/“
   Multi” badge in the accordion header.
 * Frontend: Question rendering now branches on question type — radio questions 
   render circular indicators with `role="radiogroup"`; checkbox questions keep 
   the existing multi-select logic.

#### 1.0.2

 * Feature: Changed quiz from single-select radio buttons to multi-select checkboxes
   allowing up to 3 selections per question.
 * All five default questions updated to support multiple selections.

#### 1.0.1

 * Fix: Escaped team icons before `innerHTML` insertion to prevent potential stored
   XSS.
 * Fix: Synced the version constant with the plugin header version string.

#### 1.0.0

 * Initial release.
 * Five-question quiz covering activity preference, skills, experience, passion,
   and working style.
 * Tag-based scoring algorithm ranking 23 default Make WordPress contribution teams.
 * Top match displayed as primary card; four runner-up teams shown in a grid.
 * Full admin settings page (top-level “Contributor Team Matcher” menu) with Questions
   and Teams tabs.
 * Accordion UI with add / edit / remove support for questions, answers, teams, 
   and tag weights.
 * Reset to defaults for both questions and teams.
 * Usage tab with shortcode reference and copy button.
 * Vanilla JavaScript frontend — no jQuery dependency.
 * Accessible: ARIA labels, keyboard navigation, focus management, `role="radiogroup"`/`
   role="group"` on answer lists.

## Meta

 *  Version **1.0.7**
 *  Last updated **8 hours ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 5.8 or higher **
 *  Tested up to **7.0.1**
 *  PHP version ** 7.4 or higher **
 * Tags
 * [community](https://wordpress.org/plugins/tags/community/)[Contributor](https://wordpress.org/plugins/tags/contributor/)
   [onboarding](https://wordpress.org/plugins/tags/onboarding/)[quiz](https://wordpress.org/plugins/tags/quiz/)
 *  [Advanced View](https://wordpress.org/plugins/find-your-team/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/find-your-team/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/find-your-team/reviews/)

## Contributors

 *   [ Maciej (Matt) Pilarski ](https://profiles.wordpress.org/gomp/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/find-your-team/)