Created
February 12, 2015 08:40
-
-
Save jennimckinnon/686a549779f79a524a40 to your computer and use it in GitHub Desktop.
Registering a new menu in WordPress.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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