DEDE怎么调用文章中的所有图片为缩略图?

2024-12-22 22:06:25
推荐回答(2个)
回答1:

百度中搜索 天天在线社区 看看

回答2:

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

[php]view plaincopyprint?

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

然后在模板里循环调用:
[field:litpic function=firstimg('@me')/]

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