添加一个wordpress活动类

时间:2013-07-24 15:31:59

标签: php wordpress

我需要在<li>上放置一个活跃的课程,这样当你在team_category中它会显示<li class="active">

<?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
  }
?>

1 个答案:

答案 0 :(得分:0)

这样的事情应该有效。

<?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; ?>
相关问题