typecho默认主题导航栏显示分类目录
Typecho默认主题导航栏菜单仅显示了首页和页面,如果想添加分类目录到导航栏,需要修改主题目录下的header.php文件。
在47行,找到以下代码:
<a<?php if ($this->is('index')): ?> class="current"<?php endif; ?>
href="<?php $this->options->siteUrl(); ?>"><?php _e('首页'); ?></a>
在其后面添加以下代码:
<?php $this->widget('Widget_Metas_Category_List')->to($category); ?>
<?php while($category->next()): ?>
<a<?php if($this->is('category', $category->slug)): ?> class="current"<?php endif; ?> href="<?php $category->permalink(); ?>" title="<?php $category->name(); ?>"><?php $category->name(); ?></a>
<?php endwhile; ?>