Skip to content

Instantly share code, notes, and snippets.

@michaelmusgrove
Created October 9, 2014 21:26
Show Gist options
  • Save michaelmusgrove/622aa4b1fe9998ce85a7 to your computer and use it in GitHub Desktop.
Save michaelmusgrove/622aa4b1fe9998ce85a7 to your computer and use it in GitHub Desktop.
Function to add categories and tags to my custom post types
add_action('init', 'add_category_tags_to_cpt'); function add_category_tags_to_cpt() { register_taxonomy_for_object_type('category', 'your-cpt-name'); register_taxonomy_for_object_type('post_tag', 'your-cpt-name'); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment