Last active
June 8, 2017 14:13
-
-
Save ScarletPonytail/5cfbc0ea6e435d3542a196d2094716b5 to your computer and use it in GitHub Desktop.
WordPress - Register menus in functions.php
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
// Register Menus | |
function register_my_menus() { | |
register_nav_menus( | |
array( | |
'header' => __( 'Header' ), | |
'footer' => __( 'Footer' ) | |
) | |
); | |
} | |
add_action( 'init', 'register_my_menus' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment