Skip to content

Instantly share code, notes, and snippets.

@jesseeproductions
Created December 8, 2015 16:52
Show Gist options
  • Select an option

  • Save jesseeproductions/b48bff4db7ca7a01c6cc to your computer and use it in GitHub Desktop.

Select an option

Save jesseeproductions/b48bff4db7ca7a01c6cc to your computer and use it in GitHub Desktop.
The Events Calendar Facebook Events - Add Category to Imported Events
/**
* The Events Calendar Facebook Events - Add Category to Imported Events
* change Facebook Event to the name of the event category
* @Version 4.0
*/
add_action( 'tribe_events_facebook_event_created', 'tribe_fb_add_category' );
function tribe_fb_add_category( $event_id ) {
wp_set_object_terms( $event_id, 'Facebook Event', 'tribe_events_cat', false );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment