Attachment Taxonomies
by Felix Arntz 4.6 (10 reviews)

Attachment Taxonomies

This plugin adds categories and tags to the WordPress media library - lightweight and developer-friendly.

Attachment Taxonomies ranks #6,954 among WordPress.org plugins with 1,000+ active installations, is #636 of 6,327 in the Media category, a 4.6/5 rating from 10 reviews, and was last updated Aug 15, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Compatible with WP 7.1
v1.2.2 Current Version v1.2.2
Updated 1 month ago Last Update on 15 Aug, 2026
Refreshed 11 hours ago Last Refreshed on
#636 of 6,327 in Media Top 10% by installs Downloads -29.3% this week
View on WordPress.org
Rank
#6,954
+20 this week
Active Installs
1K+
-5.3%
KW Avg Position
92.8
0.3 worse
Downloads
64.3K
+54 today
Support Resolved
0%
No change
Rating
92%
Review 4.6 out of 5
4.6 (10 reviews)

Next Milestone 2K

Total Progress 2%
1K+ 2K+
6,905
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 980 more installs to reach 2K+

Rank Changes

6,949 6,954 6,960 6,965 6,970 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026
6,949 6,958 6,966 6,975 6,983 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 16-09-2026 17-09-2026 18-09-2026
Current #6,954
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 100 200 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026
0 50 100 150 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 16-09-2026 17-09-2026 18-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.6
10 reviews
Overall 92%
5
8 (80%)
4
1 (10%)
3
0 (0%)
2
1 (10%)
1
0 (0%)

Security History

Source: WPVulnerability

No known vulnerabilities on record for Attachment Taxonomies. Checked 1 month ago.

TL;DR

AI summary of the plugin's readme

This plugin is for WordPress site owners and developers who need to organize media library files. It solves the lack of categorization in the default media library by adding dedicated, customizable taxonomies for attachments.

  • Adds categories and tags to Media Library
  • Independent from post categories and tags
  • Filter dropdowns in media toolbar and modal
  • Pick taxonomy terms in Attachment Edit modal
  • Default attachment category setting
  • Enhances [gallery] shortcode
  • Can be used as must-use plugin
  • Flexible API for custom attachment taxonomies

Frequently Asked Questions

Common questions about Attachment Taxonomies

You can simply use the WordPress Core function register_taxonomy() and specify 'attachment' as the second parameter. As an alternative, you can create your own class for the taxonomy, extending the abstract Attachment_Taxonomy class provided by the plugin. Then you can add it using the method add_taxonomy( $taxonomy ) of the class Attachment_Taxonomies. Example Code (adds an attachment taxonomy called "Location"): <?php final class Attachment_Location extends Attachment_Taxonomy { protected $slug = 'attachment_location'; protected $labels = array( 'name' => __( 'Locations', 'textdomain' ), 'singular_name' => __( 'Location', 'textdomain' ), /* more labels here... */ ); protected $args = array( 'hierarchical' => true, 'query_var' => 'location', /* more arguments here... */ ); } add_action( 'plugins_loaded', function() { Attachment_Taxonomies::instance()->add_taxonomy( new Attachment_Location() ); } );
To remove one of the default attachment taxonomies you should call the method remove_taxonomy( $taxonomy_slug ) of the class Attachment_Taxonomies. Example Code (removes the attachment taxonomy "Category"): <?php add_action( 'plugins_loaded', function() { Attachment_Taxonomies::instance()->remove_taxonomy( 'attachment_category' ); } );
To accomplish that, first you need to remove the two taxonomies that the plugin adds (attachment_category and attachment_tag). See above for instructions on how to do that. Then you can simply use the WordPress Core function register_taxonomy_for_object_type() and specify 'attachment' as the second parameter. As an alternative, you can create your own instance of the Attachment_Existing_Taxonomy class provided by the plugin. Then you can add it using the method add_taxonomy( $taxonomy ) of the class Attachment_Taxonomies, as seen in the example below. Example Code (makes the regular category and tag taxonomies available for attachments): <?php add_action( 'plugins_loaded', function() { Attachment_Taxonomies::instance()->add_taxonomy( new Attachment_Existing_Taxonomy( 'category' ) ); Attachment_Taxonomies::instance()->add_taxonomy( new Attachment_Existing_Taxonomy( 'post_tag' ) ); } );
The [gallery] shortcode can now be passed taxonomy attributes. They have to have the attachment taxonomy slug as the attribute name and a comma-separated list of term slugs or term IDs as value. You may also specify a new "limit" attribute to limit the amount of images shown. This is especially recommended if the attachment taxonomy term you are querying for contains a lot of images. As of version 1.2.0, the plugin furthermore supports an optional "tax_relation" attribute, which you can set to "AND" in order to show only images that satisfy all of the taxonomy attributes provided on the shortcode. Example Code (shows images with attachment categories 1 or 2 or attachment tag 5 with a limit of 20 images shown): [gallery attachment_category="1,2" attachment_tag="5" limit="20"] Example Code (shows images with attachment categories 1 or 2 and attachment tag 5): [gallery attachment_category="1,2" attachment_tag="5" tax_relation="AND"] Note that there is currently no UI in the backend for this, and the preview in the editor will not work properly. It will show up correctly in the frontend though.
The plugin provides some filters to adjust taxonomy arguments and labels. attachment_taxonomy_args where first argument is the array of taxonomy arguments and the second argument is the taxonomy slug that these arguments apply to attachment_taxonomy_{$taxonomy_slug}_args where the only argument is the array of taxonomy arguments for the taxonomy defined by $taxonomy_slug attachment_taxonomy_labels where first argument is the array of taxonomy labels and the second argument is the taxonomy slug that these labels apply to attachment_taxonomy_{$taxonomy_slug}_labels where the only argument is the array of taxonomy labels for the taxonomy defined by $taxonomy_slug attachment_taxonomy_class_names where the only argument is the array of class names of the taxonomies to register by default
For regular support requests, please use the wordpress.org support forums. If you have a technical issue with the plugin where you already have more insight on how to fix it, you can also open an issue on GitHub instead.
If you have ideas to improve the plugin or to solve a bug, feel free to raise an issue or submit a pull request in the GitHub repository for the plugin. Please stick to the contributing guidelines. You can also contribute to the plugin by translating it. Simply visit translate.wordpress.org to get started.

Sign In / Register

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