{"id":15530975,"url":"https://github.com/scribu/wp-query-multiple-taxonomies","last_synced_at":"2025-04-14T22:35:11.118Z","repository":{"id":1223585,"uuid":"1148251","full_name":"scribu/wp-query-multiple-taxonomies","owner":"scribu","description":"WordPress plugin for allowing advanced taxonomy queries.","archived":false,"fork":false,"pushed_at":"2017-10-07T21:38:38.000Z","size":307,"stargazers_count":104,"open_issues_count":14,"forks_count":27,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-03-28T10:47:37.799Z","etag":null,"topics":["wordpress"],"latest_commit_sha":null,"homepage":"http://wordpress.org/plugins/query-multiple-taxonomies/","language":"PHP","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/scribu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-12-08T00:06:55.000Z","updated_at":"2024-05-30T22:02:10.000Z","dependencies_parsed_at":"2022-07-06T12:41:27.283Z","dependency_job_id":null,"html_url":"https://github.com/scribu/wp-query-multiple-taxonomies","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scribu%2Fwp-query-multiple-taxonomies","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scribu%2Fwp-query-multiple-taxonomies/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scribu%2Fwp-query-multiple-taxonomies/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scribu%2Fwp-query-multiple-taxonomies/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scribu","download_url":"https://codeload.github.com/scribu/wp-query-multiple-taxonomies/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248974043,"owners_count":21192069,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["wordpress"],"created_at":"2024-10-02T11:24:34.332Z","updated_at":"2025-04-14T22:35:06.106Z","avatar_url":"https://github.com/scribu.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Query Multiple Taxonomies \nContributors: scribu  \nTags: drill-down, query, widget, navigation, taxonomy  \nRequires at least: 3.2  \nTested up to: 3.5  \nStable tag: 1.6.2  \nLicense: GPLv2 or later  \nLicense URI: http://www.gnu.org/licenses/gpl-2.0.html\n\nFilter posts through multiple taxonomies.\n\n## Description \n\nThis plugin lets you do faceted search using multiple custom taxonomies.\n\nIt has a drill-down widget with multiple display modes.\n\nSaid widget is easily customizable via template files (no PHP knowledge required).\n\n### Sponsors \n* [Bill Nanson](http://burgundy-report.com)\n* [Matthew Porter](http://porterinnovative.com)\n\n### No Support \nI do not offer any support for this plugin (free or paid).\n\nPlease consider using an [alternative plugin](https://github.com/scribu/wp-query-multiple-taxonomies/wiki/Similar-plugins).\n\nLinks: [**Documentation**](http://github.com/scribu/wp-query-multiple-taxonomies/wiki) | [Plugin News](http://scribu.net/wordpress/query-multiple-taxonomies) | [Author's Site](http://scribu.net)\n\n## Screenshots \n\n1. Lists mode\n2. Checkboxes mode\n3. Dropdowns mode\n4. Widget configuration\n\n### How can I order the taxonomies in the widget? \n\nJust drag them around.\n\n### How do I define a custom taxonomy? \n\nTry the [Simple Taxonomies](http://wordpress.org/extend/plugins/simple-taxonomies) plugin.\n\n### Is there a template tag I can use instead of widgets? \n\nYou can use [the_widget()](http://codex.wordpress.org/Function_Reference/the_widget), like so:\n\n`\nthe_widget('Taxonomy_Drill_Down_Widget', array(\n\t'title' =\u003e '',\n\t'mode' =\u003e 'dropdowns',\n\t'taxonomies' =\u003e array( 'post_tag', 'color' ) // list of taxonomy names\n));\n`\n\n'mode' can be one of 'lists' or 'dropdowns'\n\n### How can I customize the display? \n\nThe template hierarchy for multitax queries is taxonomy.php -\u003e archive.php -\u003e index.php.\n\nIf you need to get specific, you can use the `is_multitax()` conditional tag, which works similarly to `is_tax()`:\n\n`is_multitax()` -\u003e true if more than one taxonomy was queried.\n\n`is_multitax( array('tax_a', 'tax_b') )` -\u003e true if both tax_a and tax_b were\nqueried.\n\n### How can I customize the display even further? \n\nCopy any file from the `templates` directory into a directory called `qmt-templates` in\nyour theme and modify it at will.\n\nFor example to change the checkbox mode display,\n\ncopy\n\n`wp-content/plugins/query-multiple-taxonomies/templates/checkboxes.html`\n\nto\n\n`wp-content/themes/YOUR-THEME/qmt-templates/checkboxes.html`\n\nand change it however you want.\n\n## Changelog \n\n### 1.6.3 (next)\n* fixed parent term post count. props wxyjp\n* fixed term name enconding issue\n* added French translation. props flameboy\n\n### 1.6.2 \n* {{count}} tag improvements. props tiagoalves83 and jprberlin\n* added {{any-text}} tag. props jprberlin\n* updated to Mustache 1.0.0\n\n### 1.6.1 \n* fixed activation error\n* fixed error in PHP 5.4\n\n### 1.6 \n* added checkbox mode\n* added {{count}} tag. props khakulov\n* added Ukranian translation. props Jurko Chervony\n* [more info](http://scribu.net/wordpress/query-multiple-taxonomies/qmt-1-6.html)\n\n### 1.5.1 \n* fixed issue with custom post types\n\n### 1.5 \n* easy customization, using Mustache templates\n* bring back wp_title filtering\n* fix qmt_get_query() not working with the 'AND' tax_query operator\n* [more info](http://scribu.net/wordpress/query-multiple-taxonomies/qmt-1-5.html)\n\n### 1.4 \n* WordPress 3.1 compatibility (native taxonomy handling)\n* sortable taxonomy list\n* widget not affected by non-active taxonomies anymore\n* dropdowns display hierarchical taxonomies correctly\n* [more info](http://scribu.net/wordpress/query-multiple-taxonomies/qmt-1-4.html)\n\n### 1.3.2 \n* fixed URL problems\n\n### 1.3.1 \n* dropdowns displays hierarchical taxonomies correctly\n* various bugfixes\n\n### 1.3 \n* multiple taxonomies per widget\n* introduced dropdowns mode\n* is_multitax() accepts a list of taxonomies to check\n* fixed a lot of query errors\n* [more info](http://scribu.net/wordpress/query-multiple-taxonomies/qmt-1-3.html)\n\n### 1.2.3 \n* fixed problems with custom menus\n* fixed a problem with categories\n\n### 1.2.2 \n* fixed fatal error\n* reverted is_multitax() to previous behaviour\n\n### 1.2.1 \n* fixed issue when site url isn't the same as the wp url\n* fixed issue when doing a single taxonomy query\n\n### 1.2 \n* fewer queries\n* custom post type support\n* load correct template for single category|tag|term archives\n* [more info](http://scribu.net/wordpress/query-multiple-taxonomies/qmt-1-2.html)\n\n### 1.1.1 \n* better title generation\n* add ro_RO l10n\n\n### 1.1 \n* allow ?tax=foo+bar (AND) queries\n* add taxonomy drill-down widget\n* [more info](http://scribu.net/wordpress/query-multiple-taxonomies/qmt-1-1.html)\n\n### 1.0 \n* initial release\n* [more info](http://scribu.net/wordpress/query-multiple-taxonomies/qmt-1-0.html)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscribu%2Fwp-query-multiple-taxonomies","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscribu%2Fwp-query-multiple-taxonomies","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscribu%2Fwp-query-multiple-taxonomies/lists"}