Created
August 19, 2014 07:32
-
-
Save ABooooo/7a5e724f1a2d139f9f44 to your computer and use it in GitHub Desktop.
Register menus
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_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