by runthings.dev
0 (0 reviews)
TaxoSelect – Taxonomy Template Selector
Assign archive templates to categories, tags and other taxonomy terms.
Compatible with WP 6.9.4
v1.3.3
Current Version v1.3.3
Updated 2 months ago
Last Update on 14 Jan, 2026
Refreshed 7 hours ago
Last Refreshed on
Rank
#53,592
—
No change
Active Installs
0+
-100%
KW Avg Position
N/A
—
No change
Downloads
136
+2 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 10
0+
10+
22,060
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 9 more installs to reach 10+
Rank Changes
Current
#53,592
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
0.0
0 reviews
Overall
0%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.3.3
- Last Updated
- Jan 14, 2026
- Requires WP
- 6.4+
- Tested Up To
- 6.9.4
- PHP Version
- 7.4 or higher
- Author
- runthings.dev
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,719
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#955
Qi Addons For Elementor
200K+ installs
#252
MW
MW WP Form
200K+ installs
#266
WPFront Scroll Top
200K+ installs
#272
Frequently Asked Questions
Common questions about TaxoSelect – Taxonomy Template Selector
Add a PHP file to your theme directory with this header comment: <?php /** * Taxonomy Template: My Custom Template */
All public taxonomies including categories, tags, custom taxonomies from plugins like WooCommerce product categories, and any custom post type taxonomies.
No. The plugin supports both Taxonomy Template: (recommended) and Category Template: (legacy) headers for backwards compatibility. Your existing templates will continue to work.
Yes. Add this to your wp-config.php before uninstalling: define( 'RUNTHINGS_TAXONOMY_TEMPLATE_SELECTOR_KEEP_DATA', true );
Make sure your theme has at least one PHP file with either a Taxonomy Template: or Category Template: header comment. The dropdown only appears if templates are available to select.
Yes. Use the runthings_taxonomy_template_selector_dirs filter to add additional directories. Note that subdirectories are not scanned automatically - you must add each folder path explicitly. add_filter( 'runthings_taxonomy_template_selector_dirs', function( $dirs ) { $dirs[] = get_stylesheet_directory() . '/taxonomy-templates'; return $dirs; } );
Yes. Use the runthings_taxonomy_template_selector_list filter to modify the available templates. The filename is a path relative to your theme root - if using a child theme, it checks the child theme first, then falls back to the parent theme. add_filter( 'runthings_taxonomy_template_selector_list', function( $templates ) { // Add a template from theme root $templates['My Custom Archive'] = 'custom-archive.php'; // Add a template from a subdirectory $templates['Product Archive'] = 'template-parts/archive-product.php'; // Remove one you don't want unset( $templates['Unwanted Template'] ); return $templates; } );
This plugin is a fork of the original "Advanced Category Template" plugin by Praveen Goswami. It was adopted because the original plugin was removed from the WordPress.org plugin directory due to security issues. Your existing template mappings will be migrated automatically when you activate this plugin. You can safely deactivate and delete the old plugin in any order.