Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

gwp_menu

if ( ! function_exists( 'gwp_menu' ) ) {

// Register Navigation Menus
function gwp_menu() {

	$locations = array(
		'primary' => 'Primary Menu',
	);
	register_nav_menus( $locations );

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

}