Skip to content

Instantly share code, notes, and snippets.

@mustafix
Last active November 22, 2017 07:18
Show Gist options
  • Save mustafix/ec7e3e32861adeaa5923239b13eb763c to your computer and use it in GitHub Desktop.
Save mustafix/ec7e3e32861adeaa5923239b13eb763c to your computer and use it in GitHub Desktop.
<?php
// functions.php
//Menu Register
function wp_theme_menu(){
register_nav_menus(array(
'header_menu' => 'Header Menu',
));
}
add_action('after_setup_theme', 'wp_theme_menu' );
// Menu fallback
function wp_theme_fallback_menu() {
echo '<ul class="nav navbar-nav">';
if ('page' != get_option('show_on_front')) {
echo '<li><a href="'. site_url() . '/">Home</a></li>';
}
wp_list_pages('title_li=');
echo '</ul>';
}
?>
////////////////////////////////////////////////////////////////////////
<!-------
/* html markup*/
<div class="navbar-collapse collapse ">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
------>
<?php
// index.php or header.php
<?php wp_nav_menu(array(
'theme_location' => 'header_menu',
'menu_class' => 'nav navbar-nav',
'fallback_cb' => 'wp_theme_fallback_menu'
)); ?>
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment