by FAKTOR VIER
5 (13 reviews)
F4 Media Taxonomies
Add filters and bulk actions for attachment categories, tags and custom taxonomies.
Compatible with WP 6.9
v1.1.6
Current Version v1.1.6
Updated 1 month ago
Last Update on 15 Dec, 2025
Synced 12 hours ago
Last Synced on
Rank
#6,547
—
No change
Active Installs
1K+
-29.5%
KW Avg Position
N/A
—
No change
Downloads
24K
+51 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(13 reviews)
Next Milestone 2K
1K+
2K+
1,163
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 599 more installs to reach 2K+
Rank Changes
Current
#6,547
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
5.0
13 reviews
Overall
100%
5
13
(100%)
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.1.6
- Last Updated
- Dec 15, 2025
- Requires WP
- 4.5.0+
- Tested Up To
- 6.9
- PHP Version
- N/A
- Author
- FAKTOR VIER
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 13
- 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,736
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Skyboot Custom Icons for Elementor
200K+ installs
#254
Performance Lab
200K+ installs
#267
Photo Gallery by 10Web – Mobile-Friendly Image Gallery
200K+ installs
#268
Frequently Asked Questions
Common questions about F4 Media Taxonomies
add_action('init', function() {
register_taxonomy_for_object_type('category', 'attachment');
});
register_taxonomy_for_object_type('category', 'attachment');
});
add_action('init', function() {
register_taxonomy_for_object_type('post_tag', 'attachment');
});
register_taxonomy_for_object_type('post_tag', 'attachment');
});
New taxonomy:
If the taxonomy does not exist yet and you want to create a new one, you have to set the object_type in the register_taxonomy() function to attachment (see WordPress codex).
add_action('init', function() {
register_taxonomy(
'media-category',
'attachment'
);
});
Existing taxonomy:
If the taxonomy is already registered, you can assign it with this snippet. Just put it into your functions.php and change media-category to your taxonomy:
add_action('init', function() {
register_taxonomy_for_object_type('media-category', 'attachment');
});
The filters do not appear in the media overlay
For a better performance, we only include the scripts and files when they are needed. Some plugins can cause a problem with this functionality.
For this case we offer a hook, which allows you to enable the filter for special conditions. If this hook returns true, the filter is enabled for the current site.
add_filter('F4/MT/Core/has_filter', function() {
return true;
});
Can I enable taxonomies directly in the backend?
No. We simply use the taxonomies that are registered in the code. Maybe in the future, but we want to keep this plugin as lightweight and simple as possible.
Is it really free?
Yes, absolutely!
If the taxonomy does not exist yet and you want to create a new one, you have to set the object_type in the register_taxonomy() function to attachment (see WordPress codex).
add_action('init', function() {
register_taxonomy(
'media-category',
'attachment'
);
});
Existing taxonomy:
If the taxonomy is already registered, you can assign it with this snippet. Just put it into your functions.php and change media-category to your taxonomy:
add_action('init', function() {
register_taxonomy_for_object_type('media-category', 'attachment');
});
The filters do not appear in the media overlay
For a better performance, we only include the scripts and files when they are needed. Some plugins can cause a problem with this functionality.
For this case we offer a hook, which allows you to enable the filter for special conditions. If this hook returns true, the filter is enabled for the current site.
add_filter('F4/MT/Core/has_filter', function() {
return true;
});
Can I enable taxonomies directly in the backend?
No. We simply use the taxonomies that are registered in the code. Maybe in the future, but we want to keep this plugin as lightweight and simple as possible.
Is it really free?
Yes, absolutely!