Skip to content

Instantly share code, notes, and snippets.

@manters2000
Forked from ikoner/menu
Last active September 17, 2015 02:41
Show Gist options
  • Save manters2000/b54a10151dcfd9dfbe5a to your computer and use it in GitHub Desktop.
Save manters2000/b54a10151dcfd9dfbe5a to your computer and use it in GitHub Desktop.
Forked Gist
functions.php
// register wp_nav_menu
add_action( 'init', 'register_my_menus' );
function register_my_menus() {
register_nav_menus( array(
'topMenu' => __( 'topMenu', 'smsApp' )
)
);
}
<?php wp_nav_menu( array(
'container' => false,
'theme_location' => 'topMenu',
'items_wrap' => '<ul class="nav">%3$s</ul>'
) ); ?>
admin -> Appearance -> Menus
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment