织梦dedecms图集imgurls标签实现数字自增教程
{dede:field alt="图片输出区"}
[field:imgsrc/]
{/dede:field}下面结果:
/xxx/xxx.jpg
/xxx/xxx.jpg
/xxx/xxx.jpg
/xxx/xxx.jpg
/xxx/xxx.jpg
这个递增的标签是什么?
我在网站搜索了下没有这个教程。 [field:global.autoindex/] 和其他递增标签没有作用。
以上是发布在织梦官方论坛的问题求解,我也稍微测试了一下,在这个标签内确实无法应用[field:global.autoindex/] ,找到相关的文件看了一下,以设置了默认的$GLOBAL['photoid'] = 0;不过即使用这个 [field:global.photoid/] 也是不行的。
首先这个{dede:field alt="图片输出区"}标签必须在发布图集的时候选择单页多图样式,才能够输出所设置的图片数。其实这个标签还不如下面这个标签呢,不过productimagelist也不支持自增函数,但是也可以通过修改实现。
{dede:productimagelist}
{/dede:productimagelist}
不过既然提出了imgurls标签的这个问题,自然也是有解决办法的。
打开 includetaglibchannelimg.lib.php,找到,
$fields['text'] = str_replace('http://www.moke8.com/data/attachment/portal/201703/20/095857r6s7uysjjl7iuid7.attach,://www.moke8.com/data/attachment/portal/201703/20/095857r6s7uysjjl7iuid7.attach,$ctag->GetAtt('text'));
$fields['title'] = $title;
$fields['imgsrc'] = trim($ctag->GetInnerText());
$fields['imgsrctrue'] = $fields['imgsrc'];
在其下添加,
$fields['photoid'] = $GLOBAL['photoid']+1;