主頁 > 網(wǎng)站建設 > 建站知識 > dedecms給欄目加上圖片

dedecms給欄目加上圖片

POST TIME:2020-04-08 17:44

每個分類列表頁要調用不同的圖片

我在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>

如圖所示

上傳圖片 在列表頁當中加上{dede:field.typepic/}調用 圖片調出

發(fā)現(xiàn)次列表下的文章 也要調用此文件

在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);"}




收縮
  • 微信客服
  • 微信二維碼
  • 電話咨詢

  • 400-1100-266