Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created August 19, 2014 07:32
Show Gist options
  • Save ABooooo/7a5e724f1a2d139f9f44 to your computer and use it in GitHub Desktop.
Save ABooooo/7a5e724f1a2d139f9f44 to your computer and use it in GitHub Desktop.
Register menus
function register_my_menus() {
register_nav_menus(
array(
'header-menu' => __( 'MainMenu' ),
'footer-menu' => __( 'FooterMenu' ),
'left-menu' => __( 'LeftSideMenu' )
)
);
}
add_action( 'init', 'register_my_menus' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment