Typecho导航栏输出分类
编辑外观文件header.php
搜索
<?php _e('首页'); ?></a>
在空行后面添加
<?php $this->widget('Widget_Metas_Category_List')->to($categories); ?>
<?php while($categories->next()): ?>
<a<?php if($this->is('category', $categories->slug)): ?> class="current"<?php endif; ?> href="<?php $categories->permalink(); ?>" title="<?php $categories->name(); ?>"><?php $categories->name(); ?></a>
<?php endwhile; ?>