get the term list
<?php $terms = get_terms('expertice', array('hide_empty' => true) );?> <?php foreach($terms as $term){?> <li><a href="<?php echo get_term_link( $term );?>">#<?php echo $term->name;?></a></li> <?php } ?>