有时候我们因为原因需要把面包屑的链接去掉,这个要怎么操作呢?
打开/include/typelink.class.php文件,找到
打开/include/typelink.class.php文件,找到
$typelink = "<a href='".$typepage."'>".$typeinfos['typename']."</a>";
改成
$typelink = "".$typeinfos['typename']."";
如何想去除首页链接的话看下面教程
打开/include/typelink.class.php文件
找到
$indexpage = "<a href='".$this->indexUrl."'>".$this->indexName."</a>";
改成
$indexpage = "".$this->indexName."";