我们在开发织梦模板时,如果用到dede:productimagelist标签发现没有autoindex自动索引,使用[field:global.autoindex/]无法调用。岛主二次开发了一下,让dede:productimagelist标签支持autoindex。
1:打开/include/taglib/productimagelist.lib.php 找到:
foreach($images as $row)
在其上面增加如下代码
$GLOBALS['autoindex'] = 1;
//如果您希望autoindex 的起始值从0开始,把1修改成0即可。
继续找到如下代码:
$revalue .= $ctp->GetResult();
在其下面增加:
$GLOBALS['autoindex']++;
完成。
2:标签调用:
{dede:productimagelist} <span id="[field:global name=autoindex/]"><img src="[field:imgsrc/]" /></span>
{/dede:productimagelist} <span id="0"><img src="1.jpg" /></span> <span id="1"><img src="2.jpg" /></span> <span id="2"><img src="3.jpg" /></span> |
或者使用:
{dede:productimagelist} <div class="item [field:global runphp='yes' name=autoindex](@me < 2)?@me="active":@me="";[/field:global]"> <img src="[field:imgsrc/]"/> </div>
{/dede:productimagelist} <div class="item "> <img src="/2.jpg"/> </div>
<div class="item "> <img src="/3.jpg"/> </div>
|
转载请注明来源网址:https://www.mubanyun.com/dedecms_jq/949.html
发表评论
评论列表(条)