Skip to content

Instantly share code, notes, and snippets.

@plavet
Created May 22, 2012 21:45
Show Gist options
  • Save plavet/2771828 to your computer and use it in GitHub Desktop.
Save plavet/2771828 to your computer and use it in GitHub Desktop.
Wordpress - Custom Navigation Menus
/**
* Custom Navigation menus
*
* insert to functions.php
*/
add_action( 'init', 'my_custom_menus' );
function my_custom_menus() {
register_nav_menus(
array(
'primary-menu' => __( 'Primary Menu' ),
'secondary-menu' => __( 'Secondary Menu' )
)
);
}
/**
* Use in template
*
*
*/
<?php wp_nav_menu( array('theme_location' => 'primary-menu' ) ); ?>
<?php wp_nav_menu( array( 'theme_location' => 'secondary-menu' ) ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment