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 6 days ago
Last Update on 15 Dec, 2025
Synced 2 days ago
Last Synced on
Rank
#6,549
—
No change
Active Installs
1K+
—
No change
KW Avg Position
N/A
—
No change
Downloads
23.6K
—
Total downloads
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(13 reviews)
Next Milestone 2K
1K+
2K+
1,199
Ranks to Climb
-
Growth Needed
1,408
Current Installs
Need 592 more installs to reach 2K+
Rank Changes
Current
#6,549
Change
Best
#
Active Installs Growth
Downloads Growth
Reviews & 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
Skyboot Custom Icons for Elementor
200K+ installs
#256
Performance Lab
200K+ installs
#266
Photo Gallery by 10Web - Mobile-Friendly Image Gallery
200K+ installs
#267
Instant Images – One-click Image Uploads from Unsplash, Openverse, Pixabay, Pexels, and Giphy
200K+ installs
#280
Dear Flipbook – PDF Flipbook, 3D Flipbook, PDF embed, PDF viewer
100K+ installs
#288
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!