Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckpicker/9346705 to your computer and use it in GitHub Desktop.
Save ckpicker/9346705 to your computer and use it in GitHub Desktop.
Events Calendar 3.4.1 // Output all Event Category Descriptions for a given event
//Get all categories for a given events
$event_cats = get_terms('tribe_events_cat');
if(!empty($event_cats)) {
//Loop through Event Categories and display description
foreach($event_cats as $event_cat) {
echo term_description( $event_cat->term_id, 'tribe_events_cat' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment