Advertisement
mrwweb

Register core WordPress taxonomies on "Events" post type

Dec 19th, 2011
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. // Registers core WordPress category and taxonomy  taxonomies on the "Events" post type registered by the plugin "The Events Calendar"
  2. add_action( 'init', 'ac_add_calendar_taxonomy', 20 );
  3. function ac_add_calendar_taxonomy() {
  4.     register_taxonomy_for_object_type('category', 'tribe_events');
  5.     register_taxonomy_for_object_type('post_tag', 'tribe_events'); 
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement