联系官方销售客服

1835022288

028-61286886

开发框架 版主:迅睿框架研发组
批量调用指定子栏目下的文章内容和内容数量!怎么弄
类型:迅睿CMS 更新时间:2024-12-26 20:18:20 order=displayorder 栏目下的文章 文章数量

需求:我要显示指定子栏目下的文章内容,和调用该子栏目下有多少文章内容的信息

写法

{category module=share id=202 return=c1} <!--指定子栏目202-->
{$c1.name}
{module module=share catid=202 order=displayorder num=7}<!--再次指定子栏目202-->
{$key+1}<!--文章序号-->
{$t.url}<!--文章链接-->
{$t.title}<!--文章标题-->
{/module}   
{$c1.url}<!--子栏目链接-->
{php echo \Phpcmf\Service::M()->db->table('1_news_index')->where('status=9')->where('catid=202')->countAllResults();}<!--子栏目文章数量-->
{/category}
上面这个这个是运行正常的
现在我想批量调5个子栏目下的文章和显示子栏目下的文章数量,也就是想只改这里
{category module=share id=202,203,204,205,206 return=c1} <!--指定子栏目202-->
{$c1.name}
{module module=share catid=202,203,204,205,206 order=displayorder num=7}<!--再次指定子栏目202-->
{$key+1}<!--文章序号-->
{$t.url}<!--文章链接-->
{$t.title}<!--文章标题-->
{/module}   
{$c1.url}<!--子栏目链接-->
{php echo \Phpcmf\Service::M()->db->table('1_news_index')->where('status=9')->where('catid=202,203,204,205,206')->countAllResults();}<!--子栏目文章数量-->
{/category}

但发现用这种傻办法,行不通,,估计红色圈里是对的,蓝色圈里不对,但我试了用 

微信图片_20241226142947.png

catid=$c1.id    catid=$t.id

都不行,,麻烦大佬们给指点下,谢谢,,蓝色圈里要怎么写,或者有没有其它的好办法


回帖
  • 迅睿官方创始人
    #1楼    迅睿官方创始人
    2024-12-26 14:40:17
    Chrome 0
    {category module=share id=202,203,204,205,206 return=c1} <!--指定子栏目202-->
    {$c1.name}
    {module module=share catid=$c1.id order=displayorder num=7}<!--再次指定子栏目202-->
    
    
    
    {php echo \Phpcmf\Service::M()->db->table('1_news_index')->where('status=9')->where('catid='.$c1['id'])->countAllResults();}<!--子栏目文章数量-->
    {/category}
    满意答案
  • 大於
    #2楼    大於
    2024-12-26 20:18:20
    Chrome 0
    @迅睿官方创始人:非常感谢创始人大帅哥,,这网站有进项了,立即充个VIP!