オレンジ色の箇所に、タクソノミー名をいれる
 <div class="record_meta">
 <?php $terms = get_the_terms($post->ID, 'item_cat'); foreach ($terms as $term) : ?>
 <?php $term_link = get_term_link( $term, 'item_cat' );?> 
<a class="<?php echo $term->slug; ?>" href="<?php echo $term_link;?>"><?php echo $term->name; ?></a>
<?php endforeach; ?>
  </div>