首页 > 代码库 > dede5.7栏目页加入缩略图的方法,绝对可用!
dede5.7栏目页加入缩略图的方法,绝对可用!
在 后台》》系统》》SQL命令行工具 执行SQL:
alter table `dede_arctype` add `typeimg` char(100) NOT NULL default ‘‘;
涉及到文件:
dede/catalog_add.php
dede/catalog_edit.php
dede/templets/catalog_add.htm
dede/templets/catalog_edit.htm
打开dede/catalog_add.php
查找$queryTemplate = "insert into `80php_arctype`
将
(reid,topid,sortrank,typename,typedir,
替换为
(reid,topid,sortrank,typename,typedir,typeimg,
将
(‘~reid~‘,‘~topid~‘,‘~rank~‘,‘~typename~‘,‘~typedir~‘,
替换为
(‘~reid~‘,‘~topid~‘,‘~rank~‘,‘~typename~‘,‘~typedir~‘,‘~typeimg~‘,
打开dede/catalog_edit.php
查找
$upquery = "Update `80php_arctype` set
在其下面新加一行
`typeimg`=‘$typeimg‘,
打开dede/templets/catalog_add.htm
查找
<tr>
<td height="26">列表命名规则:</td>
<td>
<input name="namerule2" type="text" id="namerule2" value="http://www.mamicode.com/{typedir}/list_{tid}_{page}.html" class="pubinputs" style="width:250px" />
<img src="http://www.mamicode.com/img/help.gif" alt="帮助" width="16" height="16" border="0" style="cursor:pointer" onClick="ShowHide(‘helpvar3‘)"/></td>
</tr>
在其下面增加以下内容
<tr>
<td height="65" style="padding-left:10px;">栏目图片:</td>
<td>
<input name="typeimg" type="text" style="width:250px" id="typeimg" class="alltxt" value="" />
<input type="button" name="set9" value="http://www.mamicode.com/浏览..."class="coolbg np" style="width:60px" onClick="SelectImage(‘form1.typeimg‘,‘‘);" />
</td>
</tr>
并在文件的head增加以下内容
<script language=‘javascript‘ src="http://www.mamicode.com/js/main.js"></script>
打开dede/templets/catalog_edit.htm
在刚前面的位置加入:
<tr>
<td height="65" style="padding-left:10px;">栏目图片:</td>
<td>
<input name="typeimg" type="text" style="width:250px" id="typeimg" class="alltxt" value="http://www.mamicode.com/<?php echo $myrow[‘typeimg‘]?>" />
<input type="button" name="set9" value="http://www.mamicode.com/浏览..."class="coolbg np" style="width:60px" onClick="SelectImage(‘form1.typeimg‘,‘‘);" />
</td>
</tr>
说明:下面这句会调用出已添加的路片路径。
<?php echo $myrow[‘typeimg‘]?>
并在文件的head增加以下内容
<script language=‘javascript‘ src="http://www.mamicode.com/js/main.js"></script>
栏目模板里用{dede:field.typeimg /}调用
调用示例为:<img src="http://www.mamicode.com/{dede:field.typeimg /}" alt="{dede:type}[field:typename /]{/dede:type}"/>
alt="{dede:type}[field:typename /]{/dede:type}" 是调动出栏目的名称并在图片上显示,这个是有利于SEO的大家可以加上!本人亲测可用!
如果内容页也许调用栏目的缩略图可以用以下SQL语句调用
{dede:sql sql="SELECT typeimg FROM dede_arctype where id=7" }<img src="http://www.mamicode.com/[field:typeimg/]" alt="{dede:type}[field:typename /]{/dede:type}"/> {/dede:sql}
只要ID指定你想要调用的栏目的缩略图就可以 了,但是这样做有个不好的地方就是你不同栏目要用不同的模板,每个模板指定相应的ID就行了!