Skip to content

Instantly share code, notes, and snippets.

@jo-snips
Created March 18, 2013 18:48
Show Gist options
  • Select an option

  • Save jo-snips/5189719 to your computer and use it in GitHub Desktop.

Select an option

Save jo-snips/5189719 to your computer and use it in GitHub Desktop.
The Events Calendar - Add Category/Tag Support
<?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