Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

sdfs

sdfsd

if ( ! function_exists( 'custom_navigation_menus' ) ) {

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'home' => __( 'home page', 'hari' ),
		'service' => __( 'service section', 'hari' ),
		'blog' => __( 'blog secton', 'hari' ),
		'about us' => __( 'about us', 'hari' ),
		'contact' => __( 'contact', 'hari' ),
	);
	register_nav_menus( $locations );

}

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

}