Skip to content

Instantly share code, notes, and snippets.

@BruceMcKinnon
Created March 16, 2021 02:50
Show Gist options
  • Save BruceMcKinnon/73b68efbb4804d06693f63780db10336 to your computer and use it in GitHub Desktop.
Save BruceMcKinnon/73b68efbb4804d06693f63780db10336 to your computer and use it in GitHub Desktop.
Add categories to media items
// apply categories to attachments
function add_media_categories() {
register_taxonomy_for_object_type( 'category', 'attachment'
);
}
add_action( 'init' , 'add_media_categories' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment