tools/menu-generator
WordPress Nav Menu Generator
The WordPress menu generator is a tool that allows WordPress users to easily create and edit navigation menus on their sites.
snippet.php
function wpskills_register_nav_menus() {
$locations = array(
'primary-menu' => __( 'Primary menu', 'text-domain' ),
);
register_nav_menus( $locations );
}
// after_setup_theme, not init: this is the hook the theme handbook documents
// for menu registration, and it runs early enough that the locations exist
// before anything tries to render one.
add_action( 'after_setup_theme', 'wpskills_register_nav_menus' );