Beautiful taxonomy filters
by Jonathan de Jong 4.9 (68 reviews)

Beautiful taxonomy filters

Supercharge your custom post type archives by letting visitors filter posts by their terms/categories. This plugin handles the whole thing for you!

Beautiful taxonomy filters ranks #4,397 among WordPress.org plugins with 2,000+ active installations, is #693 of 8,538 in the Customization category, a 4.9/5 rating from 68 reviews, and was last updated Sep 8, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Compatible with WP 7.1
v2.6.0 Current Version v2.6.0
Updated 1 week ago Last Update on 08 Sep, 2026
Refreshed 12 hours ago Last Refreshed on
#693 of 8,538 in Customization Top 10% by installs Downloads -30.8% this week Actively maintained
View on WordPress.org
Rank
#4,397
+6 this week
Active Installs
2K+
-32.6%
KW Avg Position
47.8
0.3 worse
Downloads
152.3K
+61 today
Support Resolved
100%
No change
Rating
98%
Review 4.9 out of 5
4.9 (68 reviews)

Next Milestone 3K

Total Progress 95.8%
2K+ 3K+
166
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
Upgrade to Pro
Need 42 more installs to reach 3K+

Rank Changes

4,376 4,384 4,392 4,399 4,407 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026
4,366 4,376 4,387 4,397 4,407 31-08-2026 01-09-2026 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026
Current #4,397
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 200 400 600 800 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026
0 200 400 600 800 31-08-2026 01-09-2026 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

4.9
68 reviews
Overall 98%
5
63 (93%)
4
3 (4%)
3
0 (0%)
2
1 (1%)
1
1 (1%)

Support Threads Overview

Resolved
Unresolved
1
Total Threads
1
Resolved
0
Unresolved
100%
Resolution Rate

Security History

Source: WPVulnerability

1 known vulnerability on record · 1 in the last 24 months · checked 1 month ago

  1. Beautiful taxonomy filters [beautiful-taxonomy-filters] < 2.4.4

    CVE-2024-12270 · Fixed in v2.4.4

TL;DR

AI summary of the plugin's readme

This plugin is for owners of WordPress sites with custom post type archives who want visitors to filter content by taxonomy terms. It solves the problem of ugly filter URLs and clunky JavaScript-based filtering by providing automatic, pretty permalink-based taxonomy filtering that works without JavaScript.

  • Filter posts by taxonomy terms
  • Beautified pretty filter URLs
  • Conditional dropdowns via AJAX
  • Polylang compatible
  • Multisite compatible
  • Widget and shortcode placement options
  • Multiple dropdown styles
  • Custom GET parameter support

Frequently Asked Questions

Common questions about Beautiful taxonomy filters

It does change - you just can't see it. The live preview runs a whole WordPress inside your browser using WordPress Playground, and the address bar drawn above it is a mockup that doesn't follow where you are inside the site. So when you pick a couple of filters, the preview shows you the filtered results, but not the pretty URL that produced them. Behind that mockup the URL really has become something like /recipes/cuisine/thai/diet/vegan/ rather than /recipes/?cuisine=thai&diet=vegan. Since those clean, linkable, bookmarkable URLs are the main thing this plugin does, it's worth installing it on a real site to see that part properly.
Yes. Either use the widget and set a specific post type in it's settings or add a parameter of your custom post type slug to the show_beautiful_filters action. This "hardcodes" the filter module to that post type and lets you use it pretty much anywhere in your theme. Hardcore right.. <?php do_action( 'show_beautiful_filters', 'posttypeslug' ); ?>
Well of course! You can either change the order in which you register your taxonomies OR you can use the filter function moveElement( &$array, $a, $b ) { $out = array_splice($array, $a, 1); array_splice($array, $b, 0, $out); } function custom_tax_ordering( $taxonomies, $current_post_type ) { moveElement( $taxonomies, 2, 0 ); return $taxonomies; } add_filter( 'beautiful_filters_taxonomy_order', 'custom_tax_ordering' );
No. In a future release we will look into if it’s possible to support this AND having beautiful permalinks. If that doesn’t work we will likely add an option where you can opt out of beautiful permalinks and enjoy the power of multiple terms filtering instead. My taxonomy isn’t showing in the filter / the filters are too small A Taxonomy will not appear in the filter until at least one post has been connected to one of the terms. Just start tagging up your posts and you’ll see it shows up! Also, make sure that your custom post type has an archive (in the arguments for the custom post type) since this plugin uses the builtin WordPress functionality for archives.
Posts are not supported because we haven't been able to create proper rewrite rules for the multiple filtering to work. Posts are handled differently by WordPress than other custom post types (you have probably noticed that there's no /posts/ in the permalink for example). Due to this the same rewrite rules that works for custom post types doesn't work for posts. If you're just looking to filter your posts by their categories with a dropdown you can use this function wp_dropdown_categories. It's good practice to use a custom post type when you're not going to use it as news/blog -posts so perhaps you should create a Custom post type instead and make use of this beautiful plugin! The filter isn't working with my taxonomies using a rewrite slug Since v 2.2 this has been fixed. Make sure you keep BTF updated In order for the rewrite rules to work with a taxonomy that has a rewrite slug you also have to add the same slug to the query_var parameter of register_taxonomy. It wont have any visible impact for you but it's what's needed for the filtered urls to work! My taxonomy rewrite slug is nested under my post type slug If you register a taxonomy with a rewrite slug like horses/locations on a post type that's archived at horses, Beautiful Taxonomy Filters will only use the locations part when building the filtered URL, since the horses part is already in the post type archive URL. Before 2.5.0 the slug ended up in the URL twice (/horses/horses/locations/spain/). Those old URLs still resolve, but new ones won't have the duplicate. If you want the old behaviour back, return the untouched slug from the beautiful_filters_taxonomy_rewrite_slug filter.
It is 100% compatible with Polylang. WPML is a bit wonky but might work depending on your setup. In order for this to work properly you should set the post types and all connected taxonomies to be translatable. The filtered urls will still work even if you don't set the post type to be translatable but when switching language Polylang still think it should add the new language to the URL which means it'll throw a 404 error. This is to be expected and NOT due to this plugin. If you experience 404 errors make sure you flush your rewrite rules by going to settings > permalinks in the admin dashboard.
You will be able to use this plugin with any public registered custom post type regardless if it's been created by yourself or a plugin. However the displaying of the CPT must be via it's archive template. That means that a plugin that uses shortcodes to display the entire post listing on a static page will not work out of the box. It will also not work out of the box with plugins that in some way alter the permalink to the CPT archive WPMU Devs Events+ for example. But I'm using Events+ and I really want this! See here for more info I really love this plugin and I want to donate a little something-something

Sign In / Register

You need to sign in or register to use this feature.