Skip to content

Instantly share code, notes, and snippets.

@amirkheirabadi73
Created September 21, 2013 12:21
Show Gist options
  • Save amirkheirabadi73/6650104 to your computer and use it in GitHub Desktop.
Save amirkheirabadi73/6650104 to your computer and use it in GitHub Desktop.
Register Custome Menu For Wordpress Themplate
in Functions.php
function register_my_menus() {
register_nav_menus(
array(
'header-menu' => __( 'Header Menu' ),
'extra-menu' => __( 'Extra Menu' )
)
);
}
add_action( 'init', 'register_my_menus' );
in Theme
<?php wp_nav_menu( array( 'theme_location' => 'header-menu' ) ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment