打开/include/extend.func.php文件
在最下面加入以下代码
<span style="font-size:14px;">//获取图集内容
function getbody($id)
{
global $dsql;
$row = $dsql->GetOne("SELECT body FROM addonimages WHERE aid= '$id'");
$res = $row['body'];
return $res;
}</span>
前端调用
<span style="font-size:14px;">{dede:arclist typeid='9' row='10' type='image.' imgwidth='376' imgheight='376' limit='0,5' orderby='sortrank'}
<div class="goods_ltcontent [field:global name=autoindex runphp='yes'](@me>1)? @me='sk_hide':@me='';[/field:global]" id="goods_[field:global name=autoindex runphp='yes']@me=@me;[/field:global]">
<div class="ltctimg"><img src="[field:litpic/]" alt="[field:title function='html2text(@me)'/]" /></div>
<div class="ltctct">
[field:id function='getbody(@me)'/]
</div>
<div class="ltctmore"> <a href="[field:arcurl/]" class="btn">更多详情</a> </div>
</div>
{/dede:arclist}</span>
  • 详解
调用方式:[field:id function='getbody(@me)'/]
typeid='9'    调用ID为9的栏目。
row='10'    调用10条信息。 
limit='1,5'     从1之后调用5条信息。 
orderby='sortrank'  按照sortrank进行排序。   
imgwidth='376'   图片宽度为376。 
imgheight='376'     图片高度为376。