WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: taxonomy-chain-menu (Used by 9 domains)

Taxonomy Chain Menu

👤 RealMag777 📦 v2.0.9 🔗 Plugin Homepage

Taxonomy Chain Menuis a WordPress plugin that provides a single shortcode for creating chained dropdown menus of taxonomy terms, using either built-in or custom WordPress taxonomies.

Taxonomy Chain Menu is available as one shortcode: [taxonomy_chain_menu] with heap of attributes described below.
Compatible with WOOF filtration behavior!

Demo Pages:

Latest PHP 8.x – COMPATIBLE!

Taxonomy Chain Menu Features (shortcode attributes):

✅ post_slug: post type to use in the chain menu. Default slug is ‘post’.

✅ taxonomy: taxonomy terms to navigate. Default taxonomy is ‘category’.

✅ parent_id: started term ID, 0 means top parents. Default slug is 0.

✅ exclude: terms ids to hide from the chain. For example: 12,44,73.

✅ include: terms ids to show. Opposite to ‘exclude’. For example: 11,43,72.

✅ include_top: terms ids related to the top parent terms only (parent == 0). For example: 10,42,71.

✅ show_count: show/hide count of posts in the terms in drop-downs options. Default value is 0.

✅ watch_view: values: ‘posts’, ‘terms’, ‘none’. What to show on the end of the chain. Posts – drop-down with posts. Terms – button with the link to posts of the selected term in the last drop-down. None – nothing, good to apply with products tables filtering.

✅ label_taxonomy: label(s) of the drop-down(s). Example: ‘Producer’. Also it is possible to use custom actions (must started from ‘call_filter_’) for translations, example: [taxonomy_chain_menu label_taxonomy=’call_filter_chain1′ label_post=’call_filter_chain1-post’]. In file functions.php add next code:

add_filter('chain1', function($args) {

    $res = 'Producer';
    //for WPML compatibility as an example
    if (defined('ICL_LANGUAGE_CODE')) {
        switch (ICL_LANGUAGE_CODE) {
            case 'es':
                $res = 'Productor';
                break;
            case 'uk':
                $res = 'Виробник';
                break;
        }
    }

    return $res;
}, 10, 1);

✅ label_post: label of the posts drop-down. To use action instead of text in file functions.php add next code: (must started from ‘call_filter_’)

add_filter('chain1-post', function($args) {

    $res = 'Select car';
    //for WPML compatibility as an example
    if (defined('ICL_LANGUAGE_CODE')) {
        switch (ICL_LANGUAGE_CODE) {
            case 'es':
                $res = 'Seleccionar coche';
                break;
            case 'uk':
                $res = 'Яке твое авто';
                break;
            default:
                $res = 'Select your car';
                break;
        }
    }

    return $res;
}, 10, 1);

✅ button_title: title of the button at the end of the chain. By default it is ‘GO!’. Also is possible to use action (must started from ‘call_filter_’), example: [taxonomy_chain_menu post_slug=’product’ taxonomy=’product_cat’ button_title=’call_filter_chain1-btn’]

add_filter('chain1-btn', function($args) {

    $res = 'Take it!';
    //for WPML compatibility as an example
    if (defined('ICL_LANGUAGE_CODE')) {
        switch (ICL_LANGUAGE_CODE) {
            case 'es':
                $res = 'Tomar lo!';
                break;
            case 'uk':
                $res = 'Забираймо!';
                break;
        }
    }

    return $res;
}, 10, 1);

✅ chain_id: (for developers)unique JavaScript identifier for javascript event ‘taxonomy-chain-menu’ and in custom WordPress actions

✅ connect_table: unique identifier of posts/products table (TABLEON or WOOT) set in table shortcode attribute or its backend settings. It is possible to use Taxonomy Chain Menu as filter with posts and products table plugins: TABLEON – WordPress Posts Table Filterable and WOOT – WooCommerce Products Table
Such scripts cooperation is possible thanks to JavaScript event ‘taxonomy-chain-menu’ and shortcode attributes ‘chain_id’ with attribute ‘connect_table’

✅ do_filter: accepts from the box only one value – ‘woof’ (demo), but it is possible to adapt any another wordpress/woocommerce filter plugin (for developers) using js event taxonomy-chain-menu-do-filter and values there: e.detail.term_id, e.detail.slug, e.detail.container. Example: [taxonomy_chain_menu post_slug=’product’ taxonomy=’product_cat’ do_filter=’woof’]

✅ select_width: widths for drop-downs in chain. Use one value or some separated by ‘|’. Examples: ‘300px’, ‘300px|250px|20%’. Last value is actual for drop-downs in chain with number 3 and more.

✅ max_posts_count: set maximum count of posts in posts drop-down

✅ posts_orderby: how to order posts in posts drop-down (by title, id, meta). By default: title.

✅ posts_order: posts order direction in posts drop-down. Possible values: ASC, DESC

✅ posts_order_meta_key: here is meta key by which posts in posts drop-down should be ordered. Be care – meta values should exist in the requested posts. Example: [taxonomy_chain_menu post_slug=’product’ taxonomy=’product_cat’ posts_orderby=’meta_value_num’ posts_order_meta_key=’prod_1′ posts_order=’DESC’]

✅ no jQuery – pure JavaScript!

✅ Shortcode example [taxonomy_chain_menu post_slug=’product’ taxonomy=’product_cat’ show_count=1 exclude=’1′ include_top2=’17’ parent_id2=17 target=’_blank’ watch_view2=’terms’ label_taxonomy=’call_filter_chain1′ label_post=’call_filter_chain1-post’ chain_id=’chain1′ connect_table=’asdfgh’ ready_chain=’17,18,0′ button_title=’call_filter_chain1-btn’ do_filter2=’woof’ label_before2=’call_filter_chain1-before’ select_wrapper=’selectron23′ max_posts_count2=2 posts_orderby2=’meta_value_num’ posts_order_meta_key2=’prod_1′ selectron23_max_open_height=’150|200|220′ select_width=’300px|200px|350px’]

✅ All features above

✅ target: how to open selected post/terms page. Default is: ‘_self’ (opening in the same browser tab). To open in another tab use: ‘_blank’

✅ syntax for label_taxonomy: as an example – ‘Producer|Model’, such syntax allows to set individual title for each drop-down in the chain

✅ label_before: any words before first drop-down. Also it is possible to set text through action (must started from ‘call_filter_’): ([taxonomy_chain_menu post_slug=’product’ taxonomy=’product_cat’ label_before=’call_filter_chain1-before’])

✅ ready_chain: allows to display pre-selected values in the chain menu, example – [taxonomy_chain_menu watch_view=’posts’ ready_chain=’17,20,post(51)’] – at the end of the chain will be displayed drop-down with posts and button with the link to the selected post. If exists more sub-categories use 0 (zero) at the end: [taxonomy_chain_menu ready_chain=’17,20,0′]. See example.

✅ select_wrapper: has only one value ‘selectron23’ and allows to wrap drop-down in reach html-element Selectron23. Just look an example please to understand!

✅ Compatible with WPML automatically, no actions need.

Make your site more powerful with next scripts:

✅ WOOF – Products Filter for WooCommerce: is an extendable, flexible and robust plugin for WooCommerce that allows your site customers filter products by products categories, attributes, tags, custom taxonomies and price. Supports latest version of the WooCommerce plugin. A must have plugin for your WooCommerce powered online store! Maximum flexibility!

✅ WOOCS – WooCommerce Currency Switcher: is WooCommerce multi currency plugin, that allows your shop customers switch products prices currency according to the set rates in the real time and pay in the selected currency (optionally). Allows to add any currency to you WooCommerce store! The best woo currency switcher plugin for WooCommerce e-shop!

✅ BEAR – Bulk Editor for WooCommerce: WordPress plugin for managing and bulk edit WooCommerce Products data in robust and flexible way! Be professionals with managing data of your woocommerce e-shop!

✅ WPBE – WordPress Posts Bulk Editor Professional: is WordPress plugin for managing and bulk edit WordPress posts, pages and custom post types data in robust and flexible way! Be professionals with managing data of your site!

✅ WOOT – WooCommerce Active Products Tables: is WooCommerce plugin for displaying shop products in table format. Tables makes focus for your buyers on the things they want to get, nothing superfluous, just what the client wants, and full attention to what is offered!

✅ TABLEON – WordPress Post Tables Filterable: WordPress plugin for displaying site posts and their custom post types in table format. Tables makes focus for your customers on the things they want to get, nothing superfluous, just what the client wants, and full attention to what is offered!

✅ MDTF – WordPress Meta Data Filter & Taxonomies Filter: the plugin for filtering and searching WordPress content in posts and their custom types by taxonomies and meta data fields. The plugin has very high flexibility thanks to its rich filter elements and in-built meta fields constructor!

✅ WPCS – WordPress Currency Switcher: is a WordPress plugin that allows to switch currencies and get their rates converted in the real time on your site!

License

This plugin is copyright pluginus.net © 2012-2026 with GNU General Public License by realmag777.

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. See the GNU General Public License for more details.

DomainExposuresHeadersLast Checked
s*o*a*a*k*.cz F 2026-05-03 02:52:12
u*c*u.com C 2026-05-02 03:07:33
f*a*c*s*o*e*a*r*.com (WP 5.2.1) ⚠️ F 2026-04-29 23:59:44
m*t*c*.sk F 2026-04-24 12:18:26
u*i*e*r*f*a*t*r*e*c*m*a*y.com C 2026-04-24 02:46:50
u*i*e*r*f*a*t*r*e*c*.com C 2026-04-24 02:46:50
u*i*e*r*f*a*t*r*e*.com C 2026-04-24 02:46:49
i*d*f*e*b*r*.de F 2026-04-23 13:42:39
c*r*r*c*l*s.eu F 2026-04-08 18:50:38

Top 50 Plugins

Plugin Count
elementor 2,134,436
contact-form-7 1,987,130
elementor-pro 1,215,614
woocommerce 991,424
revslider 730,564
js_composer 489,156
jetpack 477,262
wp-rocket 363,373
essential-addons-for-elementor-lite 327,861
gravityforms 277,028
header-footer-elementor 266,685
complianz-gdpr 255,279
instagram-feed 253,476
google-analytics-for-wordpress 249,228
elementskit-lite 249,035
gutenberg-core 246,878
cookie-law-info 245,100
google-site-kit 244,358
sitepress-multilingual-cms 224,973
bluehost-wordpress-plugin 212,938
wpforms-lite 180,009
astra-sites 172,308
gutenberg 160,540
litespeed-cache 159,574
cookie-notice 145,251
gtranslate 145,020
coblocks 135,812
the-events-calendar 132,477
popup-maker 124,886
astra-addon 107,626
bb-plugin 106,998
tablepress 106,055
LayerSlider 105,363
wp-smushit 104,444
premium-addons-for-elementor 103,465
woocommerce-payments 101,228
mailchimp-for-wp 101,138
duracelltomi-google-tag-manager 96,938
honeypot 94,491
cleantalk-spam-protect 93,970
akismet 93,550
woocommerce-gateway-stripe 92,079
megamenu 89,459
creame-whatsapp-me 88,040
fusion-builder 87,490
smart-slider-3 86,311
formidable 85,167
all-in-one-seo-pack 84,707
pixelyoursite 83,486
pro-elements 83,391

Top 50 Themes

Theme Count
hello-elementor 703,507
Divi 584,993
astra 541,268
pub 167,274
Avada 134,782
generatepress 132,462
flatsome 132,067
oceanwp 96,456
h4 93,711
kadence 87,540
enfold 77,081
salient 74,150
bb-theme 66,776
twentytwentyfour 65,676
blocksy 60,924
twentyseventeen 60,696
cocoon-master 60,407
betheme 58,908
twentytwentyfive 58,322
dt-the7 50,019
woodmart 43,648
neve 43,495
twentytwentyone 37,716
Avada-Child-Theme 37,521
bridge 37,032
gox 35,255
twentytwenty 33,282
lightning 32,380
swell 31,887
twentytwentythree 30,203
bricks 27,398
Impreza 27,306
Newspaper 24,555
twentytwentytwo 24,043
epik-redesign 21,966
pro 20,182
storefront 20,026
uncode 19,959
extendable 19,952
twentysixteen 19,770
sydney 18,116
yith-wonder 17,850
themify-ultra 16,415
Total 16,114
twentyfifteen 14,524
hestia 14,237
porto 14,110
twentynineteen 13,634
yootheme 13,525
thrive-theme 13,408