I’ve done it. In the preview mode I can see them displayed but when I switch to “editing mode” they are “stripped out”…
this is the code I use to call them
<?php $terms = wp_get_post_terms($post->ID,'section');
$count = count($terms);
if ( $count > 0 ){
foreach ( $terms as $term ) {
echo $term->name ;
}
}?>