每個分類列表頁要調(diào)用不同的圖片
我在arctype 表加個typepic 字段 然后分別在/dede/catalog_edit.php 第59行加上typepic='$picname',
在221行加上加上個表單
<tr>
<td class='bline' height="30">欄目圖片:</td>
<td class='bline'>
<input name="picname" type="text" id="picname" style="width:300px" value="<?php echo $myrow["typepic"]?>"><input type="button" name="Submit" value="瀏覽..." style="width:70px" onClick="SelectImage('form1.picname','');">
</td>
</tr>
在dede/tempet/catalog_edit.htm 模板 加個提交表單
<tr>
<td class='bline' height="30">欄目圖片:</td>
<td class='bline'>
<input name="picname" type="text" id="picname" style="width:300px" value="<?php echo $myrow["typepic"]?>"><input type="button" name="Submit" value="瀏覽..." style="width:70px" onClick="SelectImage('form1.picname','');">
</td>
</tr>
如圖所示
上傳圖片 在列表頁當(dāng)中加上{dede:field.typepic/}調(diào)用 圖片調(diào)出
發(fā)現(xiàn)次列表下的文章 也要調(diào)用此文件
在include/extend.func.php
加上
function GetTypeImg($typeid){
global $dsql;
$sql = "select `typepic` from `dede_arctype` where `id`='$typeid'";
$row = $dsql->GetOne($sql);
return $row['typepic'];
}
然后再文件頁加上 {dede:field.typeid function="GetTypeImg(@me);"}
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: dedecms給欄目加上圖片