Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Last active March 20, 2019 15:45
Show Gist options
  • Save ScarletPonytail/11913ed41359f3eb5fdcf5efa9543b04 to your computer and use it in GitHub Desktop.
Save ScarletPonytail/11913ed41359f3eb5fdcf5efa9543b04 to your computer and use it in GitHub Desktop.
Wordpress - Get Menu
function register_my_menus() {
register_nav_menus(
array(
'new-menu' => __( 'New Menu' ),
'another-menu' => __( 'Another Menu' ),
'an-extra-menu' => __( 'An Extra Menu' )
)
);
}
add_action( 'init', 'register_my_menus' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment