欢迎访问服务器技术网-www.fuwuqijishu.com

通用Typecho代码实现面包屑导航的效果(PHP代码实现)

网站建设 fuwuqijishu 2年前 (2022-09-04) 115次浏览 0个评论 扫描二维码

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

具体代码如下:

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

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

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2121.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900