zblog php添加网页面包屑导航的代码
稍微了解SEO知识的站长应该都知道,给网站添加面包屑导航有利于网站的站内SEO优化,特别是网站目录结构层次比较多的网站,更有必要添加面包屑导航,zblog php版本主题模板添加面包屑导航的方法很简单,只需要在模板文件(大部分是在header.php文件)里插入zblog官方wiki提供的面包屑导航代码即可。
zblog php面包屑代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 | {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($article->Category->ID);global $html;echo $html;{/php} |
把以上代码添加到主题模板的header.php文件,或者分别添加到index.php、single.php等各页面的模板文件。
本文链接:https://h.finchui.com/zblogcn/1400.html 转载需授权!