Last active
March 20, 2019 15:45
-
-
Save ScarletPonytail/11913ed41359f3eb5fdcf5efa9543b04 to your computer and use it in GitHub Desktop.
Wordpress - Get Menu
This file contains 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_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