作者:空荡荡跑龙套 | 来源:互联网 | 2024-11-11 18:35
在Typecho网站的导航栏中,通常默认主题会调用独立页面作为导航项。然而,为了提升用户体验和方便访客浏览,许多站长会选择将分类目录也显示在导航栏中,甚至同时显示分类目录和独立页面。本文将详细介绍如何在Typecho中实现这一功能,帮助你优化网站结构,提高用户访问效率。
typecho的默认主题导航菜单部分调用的是独立页面,而我们搭建网站一般是把分类目录显示在导航栏,或者把分类目录和独立页面一起显示在导航栏,这样便于访客浏览网站目录。下面博客吧分享typecho分类目录显示在导航栏的代码。
只显示分类目录
在主题的header.php文件中找到代码:
1
2
3
4
|
$this->widget('Widget_Contents_Page_List')->to($pages); ?>
while($pages->next()): ?>
if($this->is('page', $pages->slug)): ?> class="current" endif; ?> href=" $pages->permalink(); ?>" title=" $pages->title(); ?>"> $pages->title(); ?>
endwhile; ?>
|
修改为以下代码:
1
2
3
4
|
$this->widget('Widget_Metas_Category_List')->to($category); ?>
while($category->next()): ?>
if($this->is('category', $category->slug)): ?> class="current" endif; ?> href=" $category->permalink(); ?>" title=" $category->name(); ?>"> $category->name(); ?>
endwhile; }?>
|
分类目录和独立页面都显示
在主题的header.php文件中找到代码:
1
2
3
4
|
$this->widget('Widget_Contents_Page_List')->to($pages); ?>
while($pages->next()): ?>
if($this->is('page', $pages->slug)): ?> class="current" endif; ?> href=" $pages->permalink(); ?>" title=" $pages->title(); ?>"> $pages->title(); ?>
endwhile; ?>
|
在该代码上面添加代码:
1
2
3
4
|
$this->widget('Widget_Metas_Category_List')->to($category); ?>
while($category->next()): ?>
if($this->is('category', $category->slug)): ?> class="current" endif; ?> href=" $category->permalink(); ?>" title=" $category->name(); ?>"> $category->name(); ?>
endwhile; ?>
|