Nav Menu Generator

Menu locations for Appearance → Menus, plus the wp_nav_menu() call with a fallback that stays quiet instead of listing every page you have.

mytheme-nav-menus.php
Saved just now
Menu locations
Primary Menuprimary
Footer Menufooter
The wp_nav_menu() call
%1$s is the menu_id, %2$s the menu_class, %3$s the items. Drop %3$s and the menu renders empty.
Naming & shape
Registration
Template output
has_nav_menu() guard
Wrap in a labelled nav
// Generated with WP CodeKit — powered by GrowQuest (https://growquest.io).
/**
 * Register the theme’s menu locations.
 */
function mytheme_nav_menus() {
	register_nav_menus(
		array(
			'primary' => __( 'Primary Menu', 'mytheme' ),
			'footer'  => __( 'Footer Menu', 'mytheme' ),
		)
	);
}
add_action( 'after_setup_theme', 'mytheme_nav_menus' );