有些默认的Typecho主题模板里是没有面包屑导航的,这个对于SEO效果不够好,这里老蒋整理到一个常用的PHP代码实现的通用Typecho面包屑导航,整理收藏,如果有需要可以使用。

具体代码如下:

<div class="breadcrumb">
<?php if($this->is('index')):?><!-- 页面首页时 -->
<a href="https://www.yuucn.com/<?php $this->options->siteUrl(); ?>" title="<?php $this->options->title(); ?>">首页</a> &gt;
<?php elseif ($this->is('post')): ?><!-- 页面为文章单页时 -->
<a href="https://www.yuucn.com/<?php $this->options->siteUrl(); ?>" title="<?php $this->options->title(); ?>">首页</a> &gt; <?php $this->category(); ?> &gt; <?php $this->title(); ?>
<?php else: ?><!-- 页面为其他页时 -->
<a href="https://www.yuucn.com/<?php $this->options->siteUrl(); ?>" title="<?php $this->options->title(); ?>">首页</a> &gt; <?php $this->archiveTitle(' &raquo; ','',''); ?>
<?php endif; ?>
</div>

完成代码撰写后,我们把他们添加到需要显示面包屑位置对应的模板文件中即可,如header.php。

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。