迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
{category module=share pid=0 return=c1} <li> <a href="{$c1.url}" >{$c1.name}</a> {/category}
这种循环里面,怎么判断循环的主栏目,有没有子栏目呢?
{if $cat.child} 当前栏目存在子栏目 {/if}
{category module=share pid=0 return=c1} 我是父栏目:{$c1.name}<br> {if $c1.child} 存在子栏目 {category module=share pid=$c1.id return=c2} 我是{$c1.name}的子栏目:{$c2.name}<br> {/category} {/if} {/category}
{category module=share pid=0 return=c1} <li> <a href="{$c1.url}" class="" >{$c1.name}</a> <ul > {category module=share pid=$c1.id return=c2} <li><a href="{$c2.url}">{$c2.name}</a></li> {/category} </ul> </li> {/category}是这样的,我就想判断循环的主栏目下,有没有子栏目。