Skip to content

Instantly share code, notes, and snippets.

@trepmal
Created February 14, 2014 22:12
Show Gist options
  • Save trepmal/9010498 to your computer and use it in GitHub Desktop.
Save trepmal/9010498 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