面包屑导航是站内SEO优化的组成部分,前面博客吧发布过zblog php添加网页面包屑导航的代码,但只分享了主要的分类部分,新手用户可能不知道怎么使用,所以下面整理了个完整的zblog php面包屑导航函数,代码使用很简单,直接添加到对应的模板文件即可。
把下面的代码放到主题的include.php文件
1 2 3 4 5 6 7 8 9 | function boke8_breadcrumb($id){ global $zbp, $boke8; $cate = $zbp->categorys; $boke8 ='» <a href="' .$cate[$id]->Url.'" title="查看' .$cate[$id]->Name. '中的全部文章">' .$cate[$id]->Name. '</a> '.$boke8; if(($cate[$id]->ParentID)>0){ boke8_breadcrumb($cate[$id]->ParentID); } return $boke8; } |
在前端模板文件中添加调用代码
1 2 3 4 5 6 7 8 | <a href="{$host}" title="{$name}">首页</a> {if $type == 'category'} {boke8_breadcrumb($category->ID)} {elseif $type =="article"} {boke8_breadcrumb($article->Category->ID)} {else} » {$title} {/if} |
支持添加到header.php、index.php、single.php等模板。