Skip to content

Instantly share code, notes, and snippets.

@Sstobo
Created November 9, 2017 19:31
Show Gist options
  • Save Sstobo/26fdae242cc7280f577675c891cf53f9 to your computer and use it in GitHub Desktop.
Save Sstobo/26fdae242cc7280f577675c891cf53f9 to your computer and use it in GitHub Desktop.
[WP menus] #wp #menu
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