Created
May 8, 2012 18:56
-
-
Save sguzik/2638491 to your computer and use it in GitHub Desktop.
HTML/PHP for menu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="navbar"> | |
<div class="navbar-inner"> | |
<div class="container"> | |
<a class="brand" href="<?php echo home_url( '/' ); ?>"><?php bloginfo('name'); ?></a> | |
<?php | |
/** Loading WordPress Custom Menu with Fallback to wp_list_pages **/ | |
wp_nav_menu( array( 'menu' => 'main-menu', 'container_class' => 'nav-collapse', 'menu_class' => 'nav', 'menu_id' => 'main-menu') ); ?> | |
</div> | |
</div><!-- /navbar-inner --> | |
</div> <!-- end of .navbar --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment