织梦dedecms给productimagelist图集标签添加数字编号自增的方法
2017-03-27 20:12:35
dedecms
源代码修改:
打开 /include/taglib/productimagelist.lib.php 文件
找到:
$ctp->LoadSource($innerText);
在此代码下边添加如下代码:
$GLOBALS['autoindex'] = 0;
找到:
$revalue .= $ctp->GetResult();
在此代码下边添加如下代码:
$GLOBALS['autoindex']++;
调用代码:
[field:global name=autoindex/]
示例:
{dede:productimagelist}
{/dede:productimagelist}
输出html代码:
打开 /include/taglib/productimagelist.lib.php 文件
找到:
$ctp->LoadSource($innerText);
在此代码下边添加如下代码:
$GLOBALS['autoindex'] = 0;
找到:
$revalue .= $ctp->GetResult();
在此代码下边添加如下代码:
$GLOBALS['autoindex']++;
调用代码:
[field:global name=autoindex/]
示例:
{dede:productimagelist}
{/dede:productimagelist}
输出html代码: