0

我正在使用Bootstrap 导航步行器

用于创建 WordPress 菜单。它创造了什么

<ul id="primary-menu" class="navbar-nav ml-lg-auto font-weight-bold">
    <ul class="dropdown-menu animated fadeIn" aria-labelledby="menu-item-dropdown-119">
       <ul class="dropdown-menu animated fadeIn" aria-labelledby="menu-item-dropdown-119">
         <ul class="dropdown-menu animated fadeIn" aria-labelledby="menu-item-dropdown-119">

现在我不想在 UL 的第三和第四级添加课程。我该怎么做?没有JS可以吗?

4

1 回答 1

1

您可以为第三级和第四级菜单编写脚本。

if ( $args->has_children && $depth === 0){ $class_names .= ' dropdown'; } elseif($args->has_children && $depth == 3){ $class_names .= ' '; }

尝试类似的东西。

于 2019-11-28T05:37:35.087 回答