zblog列表页面包屑导航的代码 支持显示所有子分类

COS、CDN
wdzsjl 2周前 (01-01) 阅读数 26 #PbootCMS
当前位置:<a href="{$host}">网站首页</a> {if $type=='category'} {php} $html=''; function navcate($id){     global $html;     $cate = new Category;     $cate->LoadInfoByID($id);     $html = ' > <a href="'.$cate->Url.'" title="查看'.$cate->Name.'中的全部文章">'.$cate->Name.'</a>'.$html;     if(($cate->ParentID)>0){         navcate($cate->ParentID);     } } navcate($category->ID); global $html; echo $html; {/php} {else}  > {$title} {/if}

效果示例: 当前位置:网站首页 > 一级分类 > 二级分类 > 三级分类

COS、CDN
热门