Bootstrap: How do I make Dropdown navigation Parent links an active link?

前端 未结 7 843
我在风中等你
我在风中等你 2021-01-30 07:50

I am running Bootstrap on a WP install and have an issue with the url being stripped from the parent drop down nav item.

Here is the code. In menu-item-72

7条回答
  •  日久生厌
    2021-01-30 08:28

    // Wow!!! This code is working properly. Just paste it into the right place on your project. // If item has_children add atts to a.

    if ( $args->has_children && $depth === 0 ) {
       $atts['href'] = ! empty( $item->url ) ? $item->url : '';
       //$atts['data-toggle']   = 'dropdown';
       $atts['class']           = 'dropdown-toggle';
    } else {
       $atts['href'] = ! empty( $item->url ) ? $item->url : '';
    }
    

提交回复
热议问题