Created
March 18, 2013 18:48
-
-
Save jo-snips/5189719 to your computer and use it in GitHub Desktop.
The Events Calendar - Add Category/Tag Support
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
| <?php | |
| /*-----------------------------------------------------------------------------------*/ | |
| /* Register Category/Tag Support for Events | |
| /*-----------------------------------------------------------------------------------*/ | |
| function add_category_tag_support() { | |
| register_taxonomy_for_object_type('post_tag', 'tribe_events'); | |
| register_taxonomy_for_object_type('tribe_events_cat', 'tribe_venue'); | |
| } | |
| add_action('init','add_category_tag_support'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment