All WordPress snippets
WordPress

Enable Tags for Media Attachments

Same idea as attachment categories, but for tags — lets you tag individual media library items.

php
/**
 * Add tags for attachments
 */
function add_tags_for_attachments() {
    register_taxonomy_for_object_type( 'post_tag', 'attachment' );
}

add_action( 'init' , 'add_tags_for_attachments' );
Want your own copy? Fork this repo and build your own snippet collection. Fork on GitHub →