Skip to content

Instantly share code, notes, and snippets.

@jennimckinnon
Created February 12, 2015 08:40
Show Gist options
  • Save jennimckinnon/686a549779f79a524a40 to your computer and use it in GitHub Desktop.
Save jennimckinnon/686a549779f79a524a40 to your computer and use it in GitHub Desktop.
Registering a new menu in WordPress.
function register_my_menu() {
register_nav_menu('new-menu',__( 'New Menu' ));
}
add_action( 'init', 'register_my_menu' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment