原文来自:https://www.zixuephp.com

dedecms 调用图集中第一张大图而非缩略图方法

1.修改include/extend.func.php,添加如下代码:

  1. //取第一张图地址
  2. functionfirstimg($str_pic)
  3. {
  4. $str_sub=substr($str_pic,0,-7).".jpg";//删除缩略图字符串最后七位,然后再补上后缀.jpg
  5. return$str_sub;
  6. }

DEDE调用大图调用原图

2.include/taglib/arclist.lib.php 第510行的位置添加:

$row['first_imgurl'] = Get_firstbigimg($row['id']);

然后在模板里循环调用:

[field:litpic function=firstimg('@me')/]

如:

  1. {dede:listpagesize='12'titlelen='20'}
  2. 【dd】
  3. 【ahref="[field:arcurl/]"target="_blank"title="[field:title/]"class="png"
  4. 【imgsrc="[field:litpicfunction=firstimg('@me')/]"alt="[field:title/]"width="213"height="261"/】【cite】[field:title/]【/cite】
  5. 【i】time:【em】[field:pubdatefunction="MyDate('Y.m.d',@me)"/]【/em】【/i】//phpfensi.com
  6. 【/a】
  7. 【/dd】
  8. {/dede:list}

如要直接调用用:{dede:field name='litpic' function="firstimg(@me)"/}