DESTOON系统文章模块默认设置第一张图片为标题图的方法

连上FTP或者其他方法打开网站目录下的\module\article\admin\template\edit.tpl.php
修改设置内容第 <input name="post[thumb_no]" type="text" size="2" value=""/> 张图片为标题图
改为 设置内容第 <input name="post[thumb_no]" type="text" size="2" value="1"/> 张图片为标题图
这就话的意思就是把输入框的默认值设为1,也就是把第一张图片设为标题图
更改后保存,即可。
测试后可以使用!

百度知道的答案是:

修改module\article\admin\template\edit.tpl.php文件查找:

<input name="post[thumb_no]" type="text" size="2" value=""/>

修改为:

<input name="post[thumb_no]" type="text" size="2" value="<?php if($thumb_no=="") {?>1<?php } ?>"/>

posted @ 2015-04-14 17:03  虾米东东  阅读(945)  评论(0编辑  收藏  举报