Skip to content

Instantly share code, notes, and snippets.

@enishant
Forked from trepmal/categories-for-media.php
Created March 11, 2014 10:32
Show Gist options
  • Save enishant/9483177 to your computer and use it in GitHub Desktop.
Save enishant/9483177 to your computer and use it in GitHub Desktop.
<?php
// Plugin Name: Add Categories to Media
add_action( 'init', 'categories_for_media' );
function categories_for_media() {
register_taxonomy_for_object_type( 'category', 'attachment' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment