Skip to content

Instantly share code, notes, and snippets.

@BeardedGinger
Created September 2, 2015 04:57
Show Gist options
  • Save BeardedGinger/1dbc85046c3e4468b543 to your computer and use it in GitHub Desktop.
Save BeardedGinger/1dbc85046c3e4468b543 to your computer and use it in GitHub Desktop.
<?php
$venue_categories = wp_get_post_terms( $venue_id, 'tribe_venue_category' );
if( !empty($venue_categories) ) {
foreach($venue_categories as $category) {
echo $category->name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment