联系官方销售客服
1835022288
028-61286886
需求:我要显示指定子栏目下的文章内容,和调用该子栏目下有多少文章内容的信息
写法
{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}
但发现用这种傻办法,行不通,,估计红色圈里是对的,蓝色圈里不对,但我试了用
catid=$c1.id catid=$t.id
都不行,,麻烦大佬们给指点下,谢谢,,蓝色圈里要怎么写,或者有没有其它的好办法