Not working with "wp_bootstrap_navwalker"
-
Hello
I have used below file.
A custom WordPress nav walker class to fully implement the Bootstrap 3.0+ navigation style in a custom theme using the WordPress built in menu manager.
https://github.com/twittem/wp-bootstrap-navwalker
// In menu code here
<?php
if ( has_nav_menu( ‘primary’ ) ) {
wp_nav_menu( array(
‘theme_location’ => ‘primary’,
‘container’ => false,
‘menu_class’ => ‘nav navbar-nav navbar-main’,
‘fallback_cb’ => ‘wp_page_menu’,
‘walker’ => new wp_bootstrap_navwalker()
)
);
}
?>1) I have remove “walker” > plugin working fine ??
2) But i need “walker” class > not working plugin ??Please help us.
Regards,
Jayesh
- The topic ‘Not working with "wp_bootstrap_navwalker"’ is closed to new replies.