{volist name=":sort_config('shop',0)" val="listdb" id="name"}
<li class="plist_box_a" [if {$i}=1]style="height:60px; line-height:60px;"[end if]><a href="{:url('shop/content/index',['fid'=>$key])}" title="{$name}"><strong></strong>{$name}</a></li>
<li class="plist_box_b" > {volist name=":sort_config('shop',$key)" id="name" rows="5"} <a href="{:url('shop/content/index',['fid'=>$key])}" title="{$name}">{$name}</a> {/volist} </li>
{/volist}
如何让子栏目里面只是显示前5个栏目名称,加了rows=“5”没用
或者,如果想实现父栏目都显示,对应父栏目下面的子栏目指定哪几个显示哪几个就显示,,应该怎么写。刚接触php还有点不会
好人一枚,非常热心,经常帮助别人解决实际问题,必须点赞。
volist限制个数用 length="5"
比如你子栏目里显示5
那就
{volist name=":sort_config('shop',$key)" id="name" length="5"} <a href="{:url('shop/content/index',['fid'=>$key])}" title="{$name}">{$name}</a> {/volist}