迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
二级导航栏目怎么做
{list action=category module=share pid=0 num=7}
<li class="menu-item menu-item-type-taxonomy menu-item-object-products ">
<a href="{$t.url}">
{$t.name}
</a>
</li>
{/list}
只想在pid为3的下面有下拉列表
{list action=category module=share pid=0 num=7} <li class="menu-item menu-item-type-taxonomy menu-item-object-products "> <a target="_blank" href="{$t.url}"> {$t.name} </a> {if $t.child} 表示存在下级 {list action=category module=share pid=$t.id return=t2} <a target="_blank" href="{$t2.url}"> {$t2.name} </a> {/list} {/if} </li> {/list}
{list action=category module=share pid=0 num=7} <li class="menu-item menu-item-type-taxonomy menu-item-object-products "> <a target="_blank" target="_blank" href="{$t.url}"> {$t.name} </a> {if $t.id == 3} {list action=category module=share pid=$t.id return=t2} <a target="_blank" target="_blank" href="{$t2.url}"> {$t2.name} </a> {/list} {/if} </li> {/list}