Skip to content

Instantly share code, notes, and snippets.

@shahadat014
Created January 27, 2015 10:25
Show Gist options
  • Save shahadat014/5dd677ebe43a6eb253f7 to your computer and use it in GitHub Desktop.
Save shahadat014/5dd677ebe43a6eb253f7 to your computer and use it in GitHub Desktop.
wp register nav menu
register nav menu
<?php
function moderna_manus(){
register_nav_menus(array(
'main_menu' => 'Main Menu'
));
}
add_action('init', 'moderna_manus');
fallback page
function 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>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment