全国400电话网上服务平台
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
DEDECMS给图集图片{dede:productimagelist}自动编号
POST TIME:2017-11-13 01:20
在图集内容页调用图集的时候,如果使用某些幻灯片特效或者jquery插件,难免会用到ID编号什么的,本教程将教会你如何给图集图片自动编号,也就是说,让{dede:productimagelist}标签支持自动编号,非常简单。
打开include/taglib/productimagelist.lib.php文件,找到:
$ctp->LoadSource($innerText);
在其后面另起一行加入
$GLOBALS['autoindex']=0;
找到:
$revalue.=$ctp->GetResult();
在其后面另起一行加入
$GLOBALS['autoindex']++;
这里的改动就算完了,接下来是内容页里调用:
[field:globalname=autoindex/]
例子:
{dede:productimagelist} <spanid="[field:globalname=autoindex/]"><imgsrc="[field:imgsrc/]"width="805"height="523"/></span> {/dede:productimagelist}
结果:
<spanid="0"><imgsrc="1.jpg"width="805"height="523"/></span> <spanid="1"><imgsrc="2.jpg"width="805"height="523"/></span> <spanid="2"><imgsrc="3.jpg"width="805"height="523"/></span> ......