在网站页面中常见的如“首页 » 新闻中心 » 正文”的东西就是面包屑,页面面包屑通常用来展示当前页面在网站中的位置,以及对网站的SEO优化起到促进作用,特别是网页结构层次较深的网站,因此面包屑几乎是网站必备的模块。那么typecho的面包屑要怎么实现?下面是具体的typecho面包屑代码。
面包屑代码:
1
2
3
4
5
6
7
8
9
| <div class="breadcrumb">
<?php if($this->is('index'):?><!-- 页面首页时 -->
<a href="<?php $this->options->siteUrl(); ?>" title="<?php $this->options->title() ?>">首页</a> >
<?php elseif ($this->is('post')): ?><!-- 页面为文章单页时 -->
<a href="<?php $this->options->siteUrl(); ?>" title="<?php $this->options->title() ?>">首页</a> > <?php $this->category(); ?> > <?php $this->title() ?>
<?php else: ?><!-- 页面为其他页时 -->
<a href="<?php $this->options->siteUrl(); ?>" title="<?php $this->options->title() ?>">首页</a> > <?php $this->archiveTitle(' » ','',''); ?>
<?php endif; ?>
</div> |
把上面的代码添加到要显示面包屑位置对应的模板文件中,如header.php。
历史资源提醒--必看
该页面资源/教程来自原魔趣吧历史资源转移,因发布历史久远,部分资源/教程可能已失效或无法在最新版程序中安装使用!DZ资源建议在Discuz3.4及以下版本使用,PHP版本建议5.6。资源仅提供做代码研究学习使用!
因改版,部分贴内链接将无法正常跳转,如链接失效或未正常跳转,请利用站内搜索功能搜索资源名称获取对应资源!