名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。织梦程序dedecms网站程序模板制作时,循环递增autoindex使用相关具体操作方法整理。 {dede:arclist titlelen='26' row='10'} <li><a title="[field:title function='htmlspecialchars(@me)'/] " href="[field:arcurl /]">[field:title /]</a></li> [field:global name=autoindex runphp="yes"]if(@me%5==0)@me="<br/>";else @me="";[/field:global] {/dede:arclist} 红色的即为autoindex标签用法。意思是,循环具体调用文章时,到第五条时输出<br/>,否则输出空。这样咱们就实现了第五篇文章下面进行换行。配合css和简单的php等相关具体代码如下使用,达到更多效果。 循环 1的写法: [field:global name=autoindex runphp="yes"]@me=@me 1;[/field:global] 频道页使用时可以换成itemindex标签,原理同autoindex {dede:global name='itemindex'/} {dede:global name='itemindex' runphp='yes'}if(@me%5==0)@me="<br/>";else @me="";{/dede:global} {dede:global name='itemindex' runphp='yes'}@me=@me 1;{/dede:global} 织梦程序默认的搜索页不支持autoindex标签,需要修改核心网站文件增加支持: 找到网站文件:include/arc.searchview.class.php 里面找到相关具体代码如下:$this->dtp2->LoadSource($innertext); 下面加上: $GLOBALS['autoindex'] = 0; ------------------------------------ if($row = $this->dsql->GetArray("al")) { 下面加上: $GLOBALS['autoindex'] ; $ids[$row['id']] = $row['id'];
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。dedecms网站程序中一问一答式具体调用问答模块问与答简介具体调用问答系统相关具体代码如下