Get Categories of events in WordPress Events Calendar Pro Plugin

You can use following code to get details of each terms.

$cats = get_the_terms( $post_id, 'tribe_events_cat' );
$term = get_term( $cats[1], $taxonomy ); // Getting the 2nd term item
$name = $term->name; //Getting names of terms

More details from https://codex.wordpress.org/Function_Reference/get_term.

Let me know if you have further questions.

Leave a Comment