Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Menu

menus

// Register Navigation Menus
function custom_navigation_menus() {

	$locations = array(
		'About ' => __( 'About', 'text_domain' ),
		'Reviews' => __( 'Reviews', 'text_domain' ),
		'Fashion and Beauty' => __( 'Fashion and Beauty', 'text_domain' ),
		'Life and Travel' => __( 'Life and Travel', 'text_domain' ),
		'Gallery' => __( 'Gallery ', 'text_domain' ),
	);
	register_nav_menus( $locations );

}

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