jprieton / wp-bootstrap4-navwalker

A custom WordPress nav walker class to fully implement the Twitter Bootstrap 4.x navigation style in a custom theme using the WordPress built in menu manager

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dropdown items have the nav-link class, but they should only have 'dropdown-item' as class.

leonidlezner opened this issue · comments

Dropdown items have the nav-link class, but they should only have 'dropdown-item' as class.

      $item_classes = array( 'nav-link' );

      if ( $args->walker->has_children ) {
        $item_classes[] = 'dropdown-toggle';
      }

      if ( 0 < $depth ) {
        // Remove the nav-link class!!
        unset($item_classes[0]); 
        
        $item_classes[] = 'dropdown-item';
      }

Fixed! Thanks @leonidlezner