Created
March 16, 2021 02:50
-
-
Save BruceMcKinnon/73b68efbb4804d06693f63780db10336 to your computer and use it in GitHub Desktop.
Add categories to media items
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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