andru26
3/30/2017 - 11:19 PM

PODS Single - Display Custom Categories

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;
}
  

}