typecho的默许主题导航菜单部份挪用的是自力页面,而我们搭建网站平常是把分类目次显现在导航栏,或许把分类目次和自力页面一同显现在导航栏,如许便于访客阅读网站目次。下面博客吧分享typecho分类目次显现在导航栏的代码。
只显现分类目次
在主题的header.php文件中找到代码:
1234 | <?php $this->widget('Widget_Contents_Page_List')->to($pages); ?><?php while($pages->next()): ?><a<?php if($this->is('page', $pages->slug)): ?> class="current"<?php endif; ?> href="<?php $pages->permalink(); ?>" title="<?php $pages->title(); ?>"><?php $pages->title(); ?></a><?php endwhile; ?> |
修改成以下代码:
1234 | <?php $this->widget('Widget_Metas_Category_List')->to($category); ?><?php while($category->next()): ?><li><a<?php if($this->is('category', $category->slug)): ?> class="current"<?php endif; ?> href="<?php $category->permalink(); ?>" title="<?php $category->name(); ?>"><?php $category->name(); ?></a></li><?php endwhile; }?> |
分类目次和自力页面都显现
在主题的header.php文件中找到代码:
1234 | <?php $this->widget('Widget_Contents_Page_List')->to($pages); ?><?php while($pages->next()): ?><a<?php if($this->is('page', $pages->slug)): ?> class="current"<?php endif; ?> href="<?php $pages->permalink(); ?>" title="<?php $pages->title(); ?>"><?php $pages->title(); ?></a><?php endwhile; ?> |
在该代码上面增加代码:
1234 | <?php $this->widget('Widget_Metas_Category_List')->to($category); ?><?php while($category->next()): ?><li><a<?php if($this->is('category', $category->slug)): ?> class="current"<?php endif; ?> href="<?php $category->permalink(); ?>" title="<?php $category->name(); ?>"><?php $category->name(); ?></a></li><?php endwhile; }?> |
文章由 博客吧 整顿宣布

评论列表