我正在使用 Bootstrap nav walker
用于创建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可能吗?
您可以为菜单的第三级和第四级编写脚本。
if ( $args->has_children && $depth === 0){ $class_names .= ' dropdown'; } elseif($args->has_children && $depth == 3){ $class_names .= ' '; }
尝试类似的东西。