迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
首页怎么循环调用文章多个同级别栏目的数据?
如:ID=1的顶级栏目下面有子栏目:栏目一 、栏目二 ,这样的话。怎么循环调用这子栏目的数据在首页呢?
可以贴出代码吗?
{category module=news id=1 pid=0 return=c1}
{module module=news pid=$t.id order=updatetime num=9}
{/module}
{/category}
{category module=news id=1 pid=0 return=c1} 这样写只能调用id1的栏目并且他是顶级栏目
{module module=news catid=$c1.id order=updatetime num=9}
{$t.title}
{category module=news id=1 pid=0 return=c1} 这样写只能调用id1的栏目并且他是顶级栏目
{module module=news catid=$c1.id order=updatetime num=9}
{$t.title}
{/module}
{/category}
我是父栏目:{$c1.name}<br>
{category module=news pid=$c1.id return=c2}
我是{$c1.name}的子栏目:{$c2.name}<br>
{module module=news catid=$c2.id order=updatetime num=9}
<a href="{$t.url}">{$t.title}</a>
{/module}
{/category}
{/category}