We'll create fresh WordPress site with Media Categories installed. You have 20 minutes to test the plugin after that site we'll be deleted.
Allows users to assign categories (or other taxonomy terms) to items in their Media Library with a clean and simplified, searchable version of the standard category meta box.
The “Search Categories” field allows you to narrow your search for a category as you type – this functionality is not native to WordPress but is instead borrowed from Jason Corradino’s
Searchable Categories plugin. If you would like to enable this feature for your posts
download his plugin here
Since WordPress 3.5 now supports attachment taxonomy, the work of adding a metabox to the attachment editor is happening entirely inside of WordPress. This is great, and we now have true metaboxes for taxonomy – they core team has also accepted my patches which caused several headaches for this plugin. Media Categories 1.5 takes advantage of the new Media Modal – with this plugin, you can now edit a images categories directly from the modal screen. I’ve also fixed some long standing bugs with the shortcode gallery functionality.
This plugin takes advantage of the existing [gallery]
shortcode for showing images by adding the 'category'
parameter.
The value passed to the 'category'
parameter can be either the category
slug
, or the term_id
.
[gallery category="my-category-slug"]
OR
[gallery category="12"]
Its important to note that when passing the 'category'
parameter, the [gallery]
shortcode will by default ignore the current post
and simply try to include all images from the category. The syntax above will retrieve any images that are assigned
to 'my-category-slug'
a.k.a term id #12
, regardless of whether or not those images are attached to the current post.
To query within a post (even the current post), you’ll need to explicitly add the post id as such…
[gallery category="my-category-slug" id="43"]
This shortcode will retrieve any images attached to post #43
that are categorized as 'my-slug-category'
.
Aside from this behavior, the [gallery] shortcode should behave exactly as it does by default with the built-in shortcode.
The id
parameter will behave as normal when the category
parameter is not invoked.
For more information on using the built-in gallery shortcode checkout the codex page.
If a developer implementing this plugin has made use of the mc_taxonomy
filter to modify which taxonomy
this plugin uses for attachments, then the name of that particular taxonomy will need to be used in place of category
as the shortcode parameter. For example, if you applied ‘Post Tags’ to your images then users should use the post_tag
parameter
in the Gallery Shortcode.
[gallery post_tag="my-tag-slug"]
OR
[gallery post_tag="12"]
[Warning: nerdy developer stuff ahead]
Since 1.4 this plugin allows developers to create metaboxes for any number of taxonomies. While previous the previous version allowed
developers to change the taxonomy being used, it still only allowed a single taxonomy metabox to be generated. With 1.4, that has changed.
All a developer needs to do, is create a new instance of the Media_Categories class and pass their desired taxonomy as an argument.
$my_custom_media_metabox = new Media_Categories('my_custom_taxonomy');
Thats it!, nothing else to it, the plugin will take care of the rest. You can create as many instances as you like – just make sure to be careful
when doing this in conjunction with the mc_taxonomy
filter – always check the current taxonomy.
Obviously this works with any taxonomy, including built-in taxonomies such as ‘post_tag’, ‘link_categories’,
and yes, even ‘nav_menu’. I’ll leave it to you developers out uses for that.
Note: Since 1.4, this plugin allows developers to generate any number of metaboxes, for any number of different taxonomies. Because of this,
it is important that when filtering the taxonomy, developers conditionally check the current taxonomy before returning a different – otherwise
the filter would override all instances of the plugin’s metaboxes with the same taxonomy. The examples below have been changes accordingly
Since version 1.3, the Media Categories plugin includes a filter allowing developers to modify the taxonomy being used.
Changing the taxonomy will automatically change all the labels used around the metabox, and change the way the Gallery Shortcode
works so that it accommodates whatever taxonomy has been chosen.
The tag for this filter is 'mc_taxonomy'
, and usage could not be simpler.
add_filter('mc_taxonomy', 'mc_filter_taxonomy');
function mc_filter_taxonomy($taxonomy){
if($taxonomy == 'category'){
$taxonomy = 'post_tag';
}
return $taxonomy
}
The above code will swap out all references to ‘category’ with appropriate (properly pluralized) references to the ‘post_tag’ taxonomy.
It will also change the way the Gallery Shortcode works to use your chosen taxonomy.
category
parameter for the Gallery Shortcode will be changed by using this filter, so that instead of category
is will by your_taxonomy
. In the case above with tags,[gallery post_tag="my-tag"]
OR [gallery post_tag="43"]
.Checkout this great plugin for Searchable Categories by Jason Corradino, whose javascript I use in this plugin.
I believe this very simple functionality should be a part of the standard categories metabox in core.
While I do not employ the plugin directly, the javascript used for filtering/searching is in fact derived with
consent, and a few modifications from that plugin. To enable this feature on all your category metaboxes, install the
Searchable Categories plugin.