Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

eee

eeeee

if ( ! function_exists( 'custom_navigation_menus' ) ) {

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'1' => __( '1', 'text_domain' ),
		'1' => __( '1', 'text_domain' ),
		'2' => __( '2', 'text_domain' ),
		'3' => __( '3', 'text_domain' ),
		'4' => __( '3', 'text_domain' ),
	);
	register_nav_menus( $locations );

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

}