[field:global.autoindex/]这个自增函数是非常常用的函数,用在不同的标签下,产生的数组不一样,用DedeCMS做网页设计的时候根据实际需要选用。常用的有网站导航 | 隔行换色 | TAG标签随机样式 | 列表页提交内容页表单 | 商品列表添加多个商品到购物车等。
[field:global.autoindex/]在不同标签下产生数组
arclist 标签下使用 [field:global.autoindex/] 默认从1开始channel 标签下使用 [field:global.autoindex/] 默认从0开始channelartlist 标签下使用 {dede:global.itemindex/} 默认从1开始arclist 从0开始[field:global name=autoindex runphp="yes"]@me=@me-1;[/field:global]channel 从1开始[field:global name=autoindex runphp="yes"]@me=@me+1;[/field:global][field:typename/]channelartlist 从0开始{dede:global name=itemindex runphp='yes'}@me=@me-1;{/dede:global}channelartlist 标签下使用 {dede:global name='itemindex' runphp='yes'}@me;{/dede:global}
织梦DedeCMS的搜索页面不支持自增函数[field:global.autoindex/],这可蛋疼了,自己研究了一下分享给站长们。
打开/include/arc.searchview.class/php,在顶部找到
require_once(DEDEINC."/taglib/hotwords.lib.php");
在下面添加
require_once(DEDEINC."/taglib/arclist.lib.php");
找到
else if($tagname=="hotwords"){ $this->dtp->Assign($tagid,lib_hotwords($ctag,$this));}
在下面添加
else if($tagname=="arclist"){ $this->dtp->Assign($tagid,lib_arclist($ctag,$this));}
这样就能让搜索页支持{dede:arclist}{/dede:arclist}标签,就能解决[field:global.autoindex/]失效的问题,{dede:arclist}标签很灵活,能用在列表或者首页 | 在列表页相当于{dede:list},也支持分页,但是自定义字段需要动一下手。
搜索页面调用自定义字段前台HTML源代码
{dede:arclist row='20' addfields='自定义字段' channelid='该字段所在的频道模型ID'}[field:title/]
{/dede:arclist}
dede搜索页另外一种增加自定义字段的方法参考文章《DedeCMS搜索功能增加自定义字段》。
搜索页面支持单独栏目搜索功能HTML源代码
All{dede:channelartlist typeid='2' } {dede:type} [field:typename/]{/dede:type} {dede:channel type='son' noself='yes'} -[field:typename/] {/dede:channel} {/dede:channelartlist}
织梦DedeCMS响应式后台模板辅助插件不显示新模块和插件的搞定方式 | 织梦DedeCMS响应式后台模板辅助插件不显示新模块和插件的搞定方式 ...