Skip to content

Instantly share code, notes, and snippets.

@priscillamc
Last active June 13, 2016 22:14
Show Gist options
  • Save priscillamc/7f0317945ab2ce1e77ce946550a0e4d4 to your computer and use it in GitHub Desktop.
Save priscillamc/7f0317945ab2ce1e77ce946550a0e4d4 to your computer and use it in GitHub Desktop.

Add menus to a WordPress Theme

In functions.php, register menus:

function theme_setup() {
    register_nav_menus( array(
		'main_menu' => esc_html__( 'Main Menu', 'theme' ),
	) );
}
add_action( 'after_setup_theme', 'theme_setup' );

In theme file:

wp_nav_menu( array( 
    'theme_location' => 'main_menu',
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment