网学网为广大网友收集整理了,PHPCMS 频道模板栏目循环调用优化,希望对大家有所帮助!
在phpcms 默认模板中,category.html是频道封面模板,但它的栏目是一行调用2个,有的同学想改成一行调用3个或更多,但又想继续用默认的循环代码。今天我就给大家小献一下(当然,此方法仅适合小白同学,高手自有自己的方法了)。
首先找到默认模板中的循环代码:
{php $j=1;}
{loop subcat($catid) $v}
{php if($v[''type'']!=0) continue;}
<div class="box cat-area" {if $j%2==1}style="margin-right:10px"{/if}>
......
{if $j%2==0}<div class="bk10"></div>{/if}
{$j++}
{/loop}
现在假如我要改成一行3个,那么新的代码就是:
{php $j=1;}
{loop subcat($catid) $v}
{php if($v[''type'']!=0) continue;}
<div class="box cat-area" {if $j%3==1}style="margin-right:10px"{/if}{if $j%3==2}style="margin-right:10px"{/if}>
......
{if $j%3==0}<div class="bk10"></div>{/if}
{$j++}
{/loop}
下面做出解释:
示例页面
原文地址:phpcms频道模板栏目循环调用优化