在网站页面中常见的如“首页 新闻中心 正文”的东西就是面包屑,页面面包屑通常用来展示当前页面在网站中的位置,以及对网站的SEO优化起到促进作用,特别是网页结构层次较深的网站,因5 3 A K 5 p z此面包屑几乎是网站必备的\ 8 2 W # p模块。那么typecho的面包屑要怎么实现?下面是具体的typecho面包屑代码。
面包屑代码:
<div class=: L + B V 0 3 4 l"breadcrumb"> <?php if($this->is('index')):?><!-- 页面首页时 --> <a href="https://www.boke8.net/&lt;?php $this-> K s c G 2 H -;optionsE w H O b \ ) 9 y->siteUrl(); ?>u N x ?;" title. S ! ( k V 1 L="<] # % | T W?php $this->options->title(); ?>">首页</a> > <?php elseif ($this->is('post')): ?><!-- 页面为文章单页时 --> <a href="https://www.boke8.net/<?php $this->optionf _ % [ A ! o ss-&gf 9 } u x 1 0t;siteUrl(); ?>" title="<?php $tQ C S _ N Shis->options->title(); ?>">首页</a> > <?php $this->category(); ?> > <?php $this->title(); ?> &ld 8 o \ ? M n Bt;?php else: ?><!-- 页面为其他页时 --> <a href="https://www.boke8r E ? L.net/<d / Q y . R?php $this->options->siteUrl(; X G , * R V); ?>" title="<?php $this->options->title(); ?>"&gt;首页</a> > <?php $thM # ais->archiveTitle(' » ','$ Z z i C',''); ?> <?php eK \ E Bndif; ?> </div>
把上面的代码添加到要显示面包屑位置对应的模板文件中,如header.php。