AlexWebLab / bootstrap-5-wordpress-navbar-walker

Bootstrap 5 WordPress navbar walker menu.
https://github.com/AlexWebLab/bootstrap-5-wordpress-navbar-walker
MIT License
250 stars 107 forks source link

Class duplicate validation error fix #4

Closed asifpix closed 3 years ago

asifpix commented 3 years ago

Now this walker will output class only once.

AlexWebLab commented 3 years ago

I've also replaced this: $nav_link_class = ( $depth > 0 ) ? 'dropdown-item nav-link ' : 'nav-link '; with this: $nav_link_class = ( $depth > 0 ) ? 'dropdown-item ' : 'nav-link '; because, according to the official documentation, when an anchor tag is grandchild of a .dropdown-menu class then it has only .dropdown-item class and not .nav-link class.

asifpix commented 3 years ago

Thanks for the fix. I am removing the fork.