Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

ghjgh

ghjgh

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'fgjfgjg' => __( 'fgjf', 'text_domain' ),
		'fjghjh' => __( 'ghjgkg', 'text_domain' ),
		'ghkgh' => __( 'ghkgj', 'text_domain' ),
		'gkhgj' => __( 'ghkgh', 'text_domain' ),
		'gkghkhg' => __( 'gjhkghkgh', 'text_domain' ),
	);
	register_nav_menus( $locations );

}

// Hook into the 'init' action
add_action( 'init', 'custom_navigation_menus' );