Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Virtual Tour Items

if ( ! function_exists( 'infx_register_tour_items' ) ) {

// Register Custom Taxonomy
function infx_register_tour_items() {

	$labels = array(
		'name'                       => _x( 'Tour Items', 'Taxonomy General Name', 'infx-child-theme' ),
		'singular_name'              => _x( 'Tour Item', 'Taxonomy Singular Name', 'infx-child-theme' ),
		'menu_name'                  => __( 'Tour Item', 'infx-child-theme' ),
		'all_items'                  => __( 'All Tour Items', 'infx-child-theme' ),
		'parent_item'                => __( 'Parent Tour Item', 'infx-child-theme' ),
		'parent_item_colon'          => __( 'Parent Tour Item:', 'infx-child-theme' ),
		'new_item_name'              => __( 'New Tour Item Name', 'infx-child-theme' ),
		'add_new_item'               => __( 'Add New Tour Item', 'infx-child-theme' ),
		'edit_item'                  => __( 'Edit Tour Item', 'infx-child-theme' ),
		'update_item'                => __( 'Update Tour Item', 'infx-child-theme' ),
		'view_item'                  => __( 'View Tour Item', 'infx-child-theme' ),
		'separate_items_with_commas' => __( 'Separate tour items with commas', 'infx-child-theme' ),
		'add_or_remove_items'        => __( 'Add or remove tour items', 'infx-child-theme' ),
		'choose_from_most_used'      => __( 'Choose from the most used', 'infx-child-theme' ),
		'popular_items'              => __( 'Popular Tour Items', 'infx-child-theme' ),
		'search_items'               => __( 'Search Tour Items', 'infx-child-theme' ),
		'not_found'                  => __( 'Tour Item Not Found', 'infx-child-theme' ),
		'no_terms'                   => __( 'No tour items', 'infx-child-theme' ),
		'items_list'                 => __( 'Tour items list', 'infx-child-theme' ),
		'items_list_navigation'      => __( 'Tour Items list navigation', 'infx-child-theme' ),
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => true,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => true,
		'show_tagcloud'              => true,
		'show_in_rest'               => true,
	);
	register_taxonomy( 'tour_items', array( 'virtual_tour' ), $args );

}
add_action( 'init', 'infx_register_tour_items', 0 );

}