PODS Single - Display Custom Categories
//get the current slug
$slug = pods_v( 'last', 'url' );
//get pods object
$pod = pods( 'property', $slug );
foreach (get_the_terms(get_the_ID(), 'taxonomy') as $cat) {
echo $cat->name;
}
// display only the first category
$custom_cats = wp_get_post_terms(get_the_ID(),'taxonomy');
if ( count($custom_cats) > 0 ){
$first_cat = $custom_cats[0]->name;
}
}