stampa i valori per la tassonomia custom indicata per il post corrente #custom #tax #post WPM
<?php
$id = get_the_ID();
$taxonomy = 'your-taxonomy';
$terms = get_the_terms( $id, $taxonomy );
foreach ($terms as $term) {
// Here you can display the terms how you want
echo 'TERM: '.$term->name;
}
?>