array(12,30)
);
$terms = get_terms('yachtbuilders',$args1 );
echo '
- ';
foreach ($terms as $term) {
//Always check if it's an error before continuing. get_term_link() can be finicky sometimes
$term_link = get_term_link( $term, 'yachtbuilders' );
if( is_wp_error( $term_link ) )
continue;
//We successfully got a link. Print it out.
echo '
- ' . $term->name . ' '; } echo '