打开include/taglib/productimagelist.lib.php文件,找到:
$ctp->LoadSource($innerText);
在后面加入
$GLOBALS['autoindex'] = 0;
找到:
$revalue .= $ctp->GetResult();
在后面加入
$GLOBALS['autoindex']++;
接下来就是html中的了:
[field:global name=autoindex/]
例子:
{dede:productimagelist}
<span id="[field:global name=autoindex/]"><img src="[field:imgsrc/]" width="805" height="523" /></span>
{/dede:productimagelist}
假如有3个图片,则结果为:
复制代码代码如下:
<span id="0"><img src="1.jpg" width="805" height="523" /></span>
<span id="1"><img src="2.jpg" width="805" height="523" /></span>
<span id="2"><img src="3.jpg" width="805" height="523" /></span>
这样就可以自动给图片加上了编号,这样能更好的分辨图片。