POST TIME:2021-05-22 23:51
有時候我們需要將面包屑的地方改為一個小圖標(biāo),那么要如何操作呢?
我們打開 /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>";
}
|
注意,上面修改后,你的那個小圖標(biāo)要放到/style/目錄,文件名為genban.jpg
