fahdi / sage-bootstrap4-navwalker
Bootstrap 4 Navbar component navwalker for Sage 9 based themes with support for hyperlinking the top level menu item
dev-main
2020-10-28 06:34 UTC
Requires
- php: >=7.1
This package is auto-updated.
Last update: 2025-03-28 15:54:47 UTC
README
Sets up a Bootstrap 4 Navwalker for Sage 9-based themes. This is based on Michael W. Delaney's repo with the same name but supports hyperlinking the top level menu item.
To install, run the following in your Sage9-based theme directory:
composer require "fahdi/sage-bootstrap4-navwalker"
Include the navwalker in your wp_nav_menu
function:
As a Controller method (Recommended)
In your Controller, probably app.php
/** * Primary Nav Menu arguments * @return array */ public function primarymenu() { $args = array( 'theme_location' => 'primary_navigation', 'menu_class' => 'navbar-nav', 'walker' => new \App\wp_bootstrap4_navwalker(), ... ); return $args; }
In your Blade file, probably header.blade.php
@if (has_nav_menu('primary_navigation')) {!! wp_nav_menu($primarymenu) !!} @endif
Without Controller
If you're not setting up your template data with Controller, you'll need to fully reference the \App\wp_bootstrap4_navwalker()
.
In your Blade file, probably header.blade.php
@if (has_nav_menu('primary_navigation')) {!! wp_nav_menu(['theme_location' => 'primary_navigation', 'menu_class' => 'navbar-nav', 'walker' => new \App\wp_bootstrap4_navwalker()]) !!} @endif