Created
January 27, 2015 10:25
-
-
Save shahadat014/5dd677ebe43a6eb253f7 to your computer and use it in GitHub Desktop.
wp register nav menu
This file contains hidden or 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
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