This plugin allows you to easily add filters to any query loop block.
Provides 2 new blocks that can be added within a query loop block to allow filtering by either post type or a taxonomy. Also supports using the core search block to allow you to search.
Compatible with both the core query loop block and the Advanced query loop plugin (In fact, in order to use post type filters, use of the Advanced Query Loop plugin is required).
Easy to use and lightweight, built using the WordPress Interactivity API.
- Add a query block. This can anyhere that the query block is supported e.g. page, template, or pattern.
- Add one of the filter blocks and configure as required:
- Taxonomy filter. Select which taxonomy to to use, customise the label (and whether it's shown), and customise the text used when none is selected.
- Post type filter. Customise the label (and whether it's shown), as well as the text used when no filter is applied.
- Search block. No extra options.
This plugin is available on packagist.
composer require humanmade/query-filter
- Download the plugin from the GitHub repository.
- Upload the plugin to your site's
wp-content/pluginsdirectory. - Activate the plugin from the WordPress admin.
Built assets are not committed to main. Manual or Composer installs should track the release branch (or a tagged release), which contains the compiled build directory.
This project uses wp-env to run a lightweight, containerized WordPress instance at localhost:3031 for testing purposes. The default username for the localhost environment is admin, with the password password.
These commands can be used to interact with the environment:
| Command | Purpose |
|---|---|
npm run env:start |
Start the local environment at http://localhost:3031 |
npm run env:stop |
Turn off the local environment |
npm run env:cli -- wp ... |
Run WP-CLI commands within the environment |
npm run env:logs |
Open (and tail) the error logs for the application‡ |
npm run env:db |
Open the database in the mysql command line |
npm run env:destroy |
Fully destroy the local environment (deletes container database) |
‡ This command deliberately filters out GET/OPTIONS/HEAD/POST/PUT access log entries
End-to-end tests run against WordPress Playground, which boots in process — there is no environment to start or stop:
npm ci
npm run build # tests run against build/, not src/
npm run test:e2e| Command | Purpose |
|---|---|
npm run test:e2e |
Run the Playwright suite |
npm run test:e2e:debug |
Step through tests in the Playwright inspector |
npm run test:e2e:watch |
Open the Playwright UI, rerunning on change |
npm run playground:start |
Boot the same environment for manual testing, without running tests |
The environment is described by blueprint.json and is shared between the test run and manual use. See tests/e2e/README.md for the fixture content and how to write tests.
Every pull request also gets a Preview in WordPress Playground button added to its description, which boots that PR's build with demo content already in place — no local checkout needed to try a change.
Releases are cut by a manually-dispatched "Release" GH Actions workflow, which builds the plugin, stamps the version into query-filter.php, and creates an immutable vX.Y.Z tag pointing at the built, versioned code. That tag is published to Packagist and attached to a GitHub release as a downloadable ZIP.
To cut a new release:
- Choose the target version number using semantic versioning.
- On the "Release" GH Action page, click "Run workflow".
- Fill out the "Version" field without a leading
v, e.g.1.2.3. - Click "Run workflow".
There is no "prepare release" pull request — the version number is supplied to the workflow and never lives on main, where the Version header is always the literal placeholder __VERSION__.
Separately, merges to main automatically build to the release branch. A project may track the release branch using Composer to pull in the latest built beta version. The release branch is not versioned and is not involved in cutting a tagged release.
See RELEASE.md for the full process, including what ships in the ZIP and how to cut a release by hand.

