Menu Generator

Overview

Use this tool to create custom code for Navigation Menus with register_nav_menus() function.

Usage

  • Fill in the user-friendly form.
  • Click the “Update Code” button.
  • Copy the code to your project.
  • Or save it as a snippet and share with the community.

Examples

If you are still learning how to use this tool, check out the following examples:

The function used in the code.
Add Child Themes Support.
Translation file Text Domain. Optional.
Slug used in the code. Lowercase, with no spaces.
A short descriptive summary of the menu.
Slug used in the code. Lowercase, with no spaces.
A short descriptive summary of the menu.
Slug used in the code. Lowercase, with no spaces.
A short descriptive summary of the menu.
Slug used in the code. Lowercase, with no spaces.
A short descriptive summary of the menu.
Slug used in the code. Lowercase, with no spaces.
A short descriptive summary of the menu.
  Save Snippet
// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'desktop_menu' => __( 'Desktop Menu', 'text_domain' ),
		'tablet_menu' => __( 'Tablet Menu', 'text_domain' ),
		'mobile_menu' => __( 'Menu Menu', 'text_domain' ),
	);
	register_nav_menus( $locations );

}
add_action( 'init', 'custom_navigation_menus' );