迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
<!--调用全部独立模块--> {cache name=module-content return=m
请问在主导航这里,调用全部独立模块怎么改成只调用独立模块中的指定几个模块名称:AA、BB、CC、DD呢
{cache name=module-content return=m} {if !$m.share && in_array($m.dirname, ["aa", "bb", "cc"])} <li class="{if MOD_DIR==$m.dirname}active{/if}"> <a target="_blank" href="{$m.url}">{$m.name}</a> <ul class="nva2"> <!--第一层:调用独立模块下的顶级栏目--> {category module=$m.dirname pid=0 return=t2} <li class="{if $t2.child} dropdown-submenu{/if} {if MOD_DIR==$m.dirname && $catid && in_array($catid, $t2.catids)} active{/if}"> <a target="_blank" href="{$t2.url}" class="nav-link nav-toggle " title="{$t2.name}"> {$t2.name} </a> {if $t2.child} <ul class="dropdown-menu pull-left"> <!--第二层:调用第二级栏目--> {category module=$m.dirname pid=$t2.id return=t3} <li class="{if MOD_DIR==$m.dirname && $catid && in_array($catid, $t3.catids)} active{/if}"> <a target="_blank" href="{$t3.url}" title="{$t3.name}"> {$t3.name} </a> </li> {/category} </ul> {/if} </li> {/category} </ul> </li> {/if} {/cache}
{cache name=module-content return=m} {if !$m.share && in_array($m.dirname, ["aa", "bb", "cc"])}
{/if}{/cache}判断一下就行