织梦DedeCMS给图片加上编号

织梦DedeCMS网站中如果有幻灯片的话,那图片肯定也是从图集中调用,图集中图片的命名都是比较长的,如果在幻灯片中能让{dede:productimagelist}标签支持自动编号,就可以让图片的名字变短一点。

打开include/taglib/productimagelist.lib.php文件,找到:
$ctp->LoadSource($innerText);
在其后面另起一行加入
$GLOBALS['autoindex'] = 0;
找到:
$revalue .= $ctp->GetResult();
在其后面另起一行加入
$GLOBALS['autoindex']++;

内容页里调用代码:

[field:global name=autoindex/]

{dede:productimagelist}
<span id="[field:global name=autoindex/]"><img src=http://www.dede58.com/"[field:imgsrc/]" width="805" height="523" /></span>
{/dede:productimagelist}

假如有3个图片,则结果为:
<span id="0"><img src=http://www.dede58.com/"1.jpg" width="805" height="523" /></span>
<span id="1"><img src=http://www.dede58.com/"2.jpg" width="805" height="523" /></span>
<span id="2"><img src=http://www.dede58.com/"3.jpg" width="805" height="523" /></span>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/e9fcd26239d75006e78ce7ac31acf9fb.html