Hi!请登陆

为Typecho的导航栏添加分类链接

2020-10-25 95 10/25

默认情况下,Typecho的导航栏是不包含分类链接的,使用此方法可以在导航栏中显示文章分类

在header.php文件中找到下列代码:

<?php $this->widget('Widget_Contents_Page_List')->to($pages); ?>

在这一行代码的上方,添加如下代码:

<!--分类 start-->
<?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; ?>
<!--分类 end-->

添加完成后,保存即可。

相关推荐