I have a portfolio template that shows all the portfolio_categories, with the possibility to filter among the categories. See: http://amazingtravel.se/wordpress/temaresor/
My question is how to rewrite this code to show only the categories of my choosing. For example, I want this template to only show the portfolio_categories "visa alla""fiske" and "dykning" in the filter.
<li><strong><?php _e( 'Välj tema på din resa: ', 'onioneye' ); ?></strong></li>
<li class="active"><a href="#" class="all" title="<?php _e( 'Visa alla resor', 'onioneye' ); ?>"><?php _e( 'Visa alla', 'onioneye' ); ?></a></li>
<?php $terms = get_terms( 'portfolio_categories' ); ?>
<?php $count_terms = count( $terms ); ?>
<?php if ( $count_terms > 0 ) { ?>
<?php foreach ( $terms as $term ) { ?>
<li><a class="<?php echo $term->slug; ?>" href="#" title="<?php printf ( __( 'View all items filed under %s', 'onioneye' ), $term->name ); ?>"><?php echo $term->name; ?></a></li>
<?php } ?>
<?php } ?>
</ul>
<!-- END #filter -->