Skip to content

Instantly share code, notes, and snippets.

@jdebuchy
Forked from retlehs/header.php
Created November 16, 2015 21:51
Show Gist options
  • Select an option

  • Save jdebuchy/abb8ac1a5df79c3c3135 to your computer and use it in GitHub Desktop.

Select an option

Save jdebuchy/abb8ac1a5df79c3c3135 to your computer and use it in GitHub Desktop.

Revisions

  1. @retlehs retlehs created this gist Apr 29, 2015.
    26 changes: 26 additions & 0 deletions header.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,26 @@
    <?php
    // This file assumes that you have included the nav walker from https://github.com/twittem/wp-bootstrap-navwalker
    // somewhere in your theme.
    ?>

    <header class="banner navbar navbar-default navbar-static-top" role="banner">
    <div class="container">
    <div class="navbar-header">
    <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
    <span class="sr-only"><?= __('Toggle navigation', 'sage'); ?></span>
    <span class="icon-bar"></span>
    <span class="icon-bar"></span>
    <span class="icon-bar"></span>
    </button>
    <a class="navbar-brand" href="<?= esc_url(home_url('/')); ?>"><?php bloginfo('name'); ?></a>
    </div>

    <nav class="collapse navbar-collapse" role="navigation">
    <?php
    if (has_nav_menu('primary_navigation')) :
    wp_nav_menu(['theme_location' => 'primary_navigation', 'walker' => new wp_bootstrap_navwalker(), 'menu_class' => 'nav navbar-nav']);
    endif;
    ?>
    </nav>
    </div>
    </header>