WP > Term Name
$terms = get_the_terms( $post->ID , 'categorias' );
if($terms) {
foreach( $terms as $term ) {
echo $terminowp = $term->name;
}
}
$terms = get_the_terms( $post->ID , 'etiquetas' );
foreach ( $terms as $term ) {
$term_link = get_term_link( $term, 'etiquetas' );
echo "<a href='".$term_link."'>" . $term->name . "</a> ";
}