Skip to content

Instantly share code, notes, and snippets.

@ikoner
Created February 6, 2015 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ikoner/a7af776b980be2c8d0a2 to your computer and use it in GitHub Desktop.
Save ikoner/a7af776b980be2c8d0a2 to your computer and use it in GitHub Desktop.
wordpress
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