Created
November 9, 2017 19:31
-
-
Save Sstobo/26fdae242cc7280f577675c891cf53f9 to your computer and use it in GitHub Desktop.
[WP menus] #wp #menu
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
Like our sidebars, we must "register" all of the navigation menus we want to add to our WordPress theme: | |
In your functions.php file: | |
function my_theme_setup() { | |
register_nav_menus( array( | |
'primary' => 'Primary Menu', | |
) ); | |
} | |
add_action( 'after_setup_theme', 'my_theme_setup' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment