Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Untitled
SUBMITTED BY:
Guest
DATE:
Nov. 23, 2013, 9:51 a.m.
FORMAT:
Text only
SIZE:
774 Bytes
Raw
Download
Tweet
HITS:
8374
Go to comments
Report
<?php
$sport = get_terms( 'team_category' );
if($sport){
?><ul><?php
foreach($sport as $s){ ?>
<li><a href="<?php echo get_term_link( $s->slug, 'team_category' ) ?>"><?php echo $s->name; ?></a></li>
<?php }
?></ul><?php
}
?>
<?php $sport = get_terms( 'team_category' ); ?>
<?php if($sport): ?>
<ul>
<?php foreach($sport as $s): ?>
<li class="<?php if($current_team == $s): ?>active<?php endif; ?>">
<a href="<?php echo get_term_link( $s->slug, 'team_category' ) ?>"><?php echo $s->name; ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus