[insert_php]

$terms = get_the_terms( $post->ID, ‘stan’ );
foreach($terms as $term) {
echo $term->name;
}

[/insert_php]