织梦dedecms将面包屑导航中的"首页"换成图标的要领

有时候我们需要将面包屑的处所改为一个小图标,那么要如何操纵呢?

我们打开 /include/typelink.class.php 文件

找到:

function GetPositionLink($islink=true) { if ( defined('DEDEMOB') ) { $indexpage = "<a href='index.php'>".$this->indexName."</a>"; } else{ $indexpage = "<a href='".$this->indexUrl."'>".$this->indexName."</a>"; }  

 

修改为:

function GetPositionLink($islink=true) { if ( defined('DEDEMOB') ) { $indexpage = "<a href='index.php'>"."<img src=/"/style/genban.jpg/" alt=/"Home/">"."</a>"; } else{ $indexpage = "<a href='".$this->indexUrl."'>"."<img src=/"/style/genban.jpg/" alt=/"Home/">"."</a>"; }  

 

留意,上面修改后,你的谁人小图标要放到/style/目次,文件名为genban.jpg

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsjpfp.html