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

Plugin: taxonomy-chain-menu (Used by 8 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
f*a*c*s*o*e*a*r*.com (WP 5.2.1) ⚠️ F 2026-06-03 04:49:58
u*c*u.com C 2026-06-02 01:31:56
i*d*f*e*b*r*.de F 2026-05-24 10:43:49
u*i*e*r*f*a*t*r*e*c*m*a*y.com C 2026-05-24 04:49:39
u*i*e*r*f*a*t*r*e*c*.com C 2026-05-24 04:49:39
u*i*e*r*f*a*t*r*e*.com C 2026-05-24 04:49:39
c*r*r*c*l*s.eu F 2026-05-09 00:49:57
s*o*a*a*k*.cz F 2026-05-03 02:52:12

Top 50 Plugins

Plugin Count
elementor 1,744,327
contact-form-7 1,739,229
elementor-pro 1,027,788
woocommerce 797,925
revslider 605,663
jetpack 456,403
js_composer 420,900
wp-rocket 327,985
essential-addons-for-elementor-lite 264,002
complianz-gdpr 256,882
gravityforms 251,116
cookie-law-info 228,015
instagram-feed 225,059
google-site-kit 219,372
sitepress-multilingual-cms 209,712
google-analytics-for-wordpress 207,790
header-footer-elementor 206,578
bluehost-wordpress-plugin 185,580
elementskit-lite 181,214
gutenberg-core 161,365
gutenberg 159,852
cookie-notice 150,782
litespeed-cache 130,768
wpforms-lite 128,077
the-events-calendar 124,824
gtranslate 122,976
astra-sites 118,495
popup-maker 111,909
woocommerce-payments 110,959
tablepress 99,723
coblocks 99,183
honeypot 96,237
astra-addon 93,115
all-in-one-seo-pack 91,664
wp-smushit 91,020
LayerSlider 89,839
duracelltomi-google-tag-manager 89,212
bb-plugin 85,448
premium-addons-for-elementor 84,729
akismet 83,659
cleantalk-spam-protect 82,375
mailchimp-for-wp 82,191
woocommerce-gateway-stripe 79,841
megamenu 79,695
borlabs-cookie 79,524
ml-slider 78,664
fusion-builder 77,466
ewww-image-optimizer 75,442
formidable 75,398
smart-slider-3 75,144

Top 50 Themes

Theme Count
hello-elementor 606,398
Divi 501,867
astra 417,125
flatsome 125,696
Avada 121,657
generatepress 115,745
pub 111,465
oceanwp 82,272
kadence 78,633
enfold 70,932
salient 65,007
h4 55,474
twentyseventeen 54,842
twentytwentyfour 52,644
bb-theme 51,719
betheme 51,552
cocoon-master 50,876
blocksy 49,730
dt-the7 45,261
twentytwentyfive 43,293
neve 38,751
Avada-Child-Theme 36,699
gox 34,496
woodmart 32,986
bridge 32,224
twentytwentyone 31,352
lightning 29,583
twentytwenty 28,979
swell 27,861
Impreza 26,096
bricks 25,386
twentytwentythree 23,372
Newspaper 23,298
twentytwentytwo 19,595
epik-redesign 19,302
uncode 18,515
twentysixteen 17,588
pro 17,119
sydney 16,624
storefront 16,445
extendable 14,924
Total 14,496
yith-wonder 13,365
hello-theme-child-master 13,309
factory-templates-4 13,223
themify-ultra 12,876
yootheme 12,638
hestia 12,610
twentynineteen 11,800
porto 11,713