这里对$this->widget('Widget_Metas_Category_List')
进行了修改,判断当前分类目录的关键是<?php if($this->is('category', $categories->slug)): ?> class="current"<?php endif; ?>
这句,如果是当前分类,则该分类导航的 html 中加上class="current"
,而 .current 这个 css 样式就由你自定义了。
模板中 PHP 代码如下:
<?php $this->widget('Widget_Metas_Category_List')->to($categories); ?>
<?php while($categories->next()): ?>
<li<?php if($this->is('category', $categories->slug)): ?> class="current"<?php endif; ?>><a href="<?php $categories->permalink(); ?>"><?php $categories->name(); ?></a><i>⇒ <?php $categories->count(); ?> posts</i></li>
<?php endwhile; ?>