织梦dedecms模板制作时,循环递增autoindex使用方法整理_DedeCms教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!
织梦dedecms模板制作时,循环递增autoindex使用方法整理。仅供大家学习参考,希望对你有所帮助。
  1. {dede:arclist titlelen='26' row='10'
  2.   
  3. <li><a title="[field:title function='htmlspecialchars(@me)'/] " href="[field:arcurl /]">[field:title /]</a></li> 
  4.   
  5.  [field:global name=autoindex runphp="yes"]if(@me%5==0)@me="<br/>";else @me="";[/field:global] 
  6.   
  7. {/dede:arclist} 
红色的即为autoindex标签用法。意思是,循环调用文章时,到第五条时输出<br/>,否则输出空。这样我们就实现了第五篇文章下面进行换行。配合css和简单的php代码使用,达到更多效果。
循环+1的写法:
  1. [field:global name=autoindex runphp="yes"]@me=@me+1;[/field:global] 
  2. 频道页使用时可以换成itemindex标签,原理同autoindex 
  3.   
  4. {dede:global name='itemindex'/} 
  5. {dede:global name='itemindex' runphp='yes'}if(@me%5==0)@me="<br/>";else @me="";{/dede:global} 
  6. {dede:global name='itemindex' runphp='yes'}@me=@me+1;{/dede:global} 
织梦默认的搜索页不支持autoindex标签,需要修改核心文件增加支持:
  1. 找到文件:include/arc.searchview.class.php 
  2. 里面找到代码:$this->dtp2->LoadSource($innertext); 
  3. 下面加上: 
  4. $GLOBALS['autoindex'] = 0; 
  5. ------------------------------------ 
  6. if($row = $this->dsql->GetArray("al")) 
  7. 下面加上: 
  8.  $GLOBALS['autoindex']++; 
  9.  $ids[$row['id']] = $row['id']; 
有需要的可以来记录下来。


查看更多 DedeCms教程  织梦模板  织梦DedeCms视频教程  织梦dedecms专题

来源:模板无忧//所属分类:DedeCms教程/更新时间:2020-05-16
相关DedeCms教程