TaxoFilter Admin
Adds customizable taxonomy filters for posts and custom post types in the WordPress admin area.
Plugin info
Maintenance & Compatibility
Maintenance score
Stale • Last updated 250 days ago • 1 reviews
Is TaxoFilter Admin abandoned?
Likely maintained (last update 250 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
TaxoFilter Admin enhances the WordPress admin experience by providing customizable taxonomy filters for all post types.
The plugin is open source and hosted on GitHub. If you have any issues or feedback, please open an issue there.
Key Features:
- Automatically adds taxonomy dropdowns to post list screens
- Works with posts, pages, and custom post types
- Allows administrators to select which taxonomy filters to display via screen options
- Clean, developer-friendly code
Installation
- Upload the
taxofilter-adminfolder to the/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Visit any post list screen and use the screen options to configure which taxonomy filters to display
Frequently Asked Questions
Yes, the plugin automatically detects all registered post types and their associated taxonomies.
Yes, you can customize which taxonomy filters appear by accessing the Screen Options panel at the top of any post list screen.
You can use the taxofilter_admin_excluded_taxonomies filter to exclude specific taxonomies from showing up in the screen options for a post type.
Example usage:
add_filter('taxofilter_admin_excluded_taxonomies', function($excluded, $post_type) {
if ($post_type === 'custom_post_type') {
$excluded[] = 'custom_taxonomy';
}
return $excluded;
}, 10, 2);
Review feed
This should be iin core
Changelog
1.0.1
- TWEAK: Added
taxofilter_admin_excluded_taxonomiesfilter to allow excluding specific taxonomies from the screen options.
1.0.0
- Initial release

