
歡迎訪問全國企業網站設計NO.1網站開發商平臺 | 付款方式 |
POST TIME:2020-10-09
很多在織夢dedecms首頁調用圖片集中的圖片,在列表頁也會調用,但是在文章內容頁的時候就調用不來了,修改幾個文件其實也可以調用出來,注意文件要備份。
打開\include\arc.archives.class.php
if($this->ChannelUnit->ChannelInfos['issystem']!=-1)
將
$query = "Select arc.*,tp.reid,tp.typedir,ch.addtable
from `dede_archives` arc
left join dede_arctype tp on tp.id=arc.typeid
left join dede_channeltype as ch on arc.channel = ch.id
where arc.id='$aid' ";
$this->Fields = $this->dsql->GetOne($query);
替換為
$query = "Select arc.*,tp.reid,tp.typedir,tp.typeimg,ch.addtable
from `dede_archives` arc
left join dede_arctype tp on tp.id=arc.typeid
left join dede_channeltype as ch on arc.channel = ch.id
where arc.id='$aid' ";
$this->Fields = $this->dsql->GetOne($query);
其中,typeimg字段是在首頁調用圖片集新增的字段,如果你不是這個字段就主要在以上代碼中要修改。