Untitled


SUBMITTED BY: Guest

DATE: Nov. 23, 2013, 9:51 a.m.

FORMAT: Text only

SIZE: 774 Bytes

HITS: 8362

  1. <?php
  2. $sport = get_terms( 'team_category' );
  3. if($sport){
  4. ?><ul><?php
  5. foreach($sport as $s){ ?>
  6. <li><a href="<?php echo get_term_link( $s->slug, 'team_category' ) ?>"><?php echo $s->name; ?></a></li>
  7. <?php }
  8. ?></ul><?php
  9. }
  10. ?>
  11. <?php $sport = get_terms( 'team_category' ); ?>
  12. <?php if($sport): ?>
  13. <ul>
  14. <?php foreach($sport as $s): ?>
  15. <li class="<?php if($current_team == $s): ?>active<?php endif; ?>">
  16. <a href="<?php echo get_term_link( $s->slug, 'team_category' ) ?>"><?php echo $s->name; ?></a>
  17. </li>
  18. <?php endforeach; ?>
  19. </ul>
  20. <?php endif; ?>

comments powered by Disqus