I wan’t to use Bootstrap Navigation in WordPress.
I put bootstrap into the File functions.php.
But the navigation even did not work (in header.php)?
This is where I want to add bootstrap:
<!-- site navigation menu-->
<nav class="nav nav-pills site-nav">
<?php wp_nav_menu(); ?>
</nav><!-- site navigation menu-->
2
Answers
brother you have to import bootstrap css in the style.css and it works fine in the template or for function.php
}
add_action( ‘wp_enqueue_scripts’, ‘theme_styles’);
function theme_js() {
}
add_action( ‘wp_enqueue_scripts’, ‘theme_js’);
I can recommend wp-bootstrap-navwalker:
Check out the documentation:
https://github.com/wp-bootstrap/wp-bootstrap-navwalker