Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Luoghi Comuni Projects Sector

// Register Custom Taxonomy
function luoghi_comuni_projects_sector() {

	$labels = array(
		'name'                       => 'Settori',
		'singular_name'              => 'Settore',
		'menu_name'                  => 'Settori',
		'all_items'                  => 'Tutti',
		'parent_item'                => 'Parent Item',
		'parent_item_colon'          => 'Parent Item:',
		'new_item_name'              => 'Aggiungi Settore',
		'add_new_item'               => 'Aggiungi',
		'edit_item'                  => 'Edit Item',
		'update_item'                => 'Update Item',
		'view_item'                  => 'View Item',
		'separate_items_with_commas' => 'Separate items with commas',
		'add_or_remove_items'        => 'Add or remove items',
		'choose_from_most_used'      => 'Choose from the most used',
		'popular_items'              => 'Popular Items',
		'search_items'               => 'Search Items',
		'not_found'                  => 'Not Found',
		'no_terms'                   => 'No items',
		'items_list'                 => 'Items list',
		'items_list_navigation'      => 'Items list navigation',
	);
	$rewrite = array(
		'slug'                       => 'progetti/settori/',
		'with_front'                 => true,
		'hierarchical'               => false,
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => true,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => true,
		'show_tagcloud'              => true,
		'rewrite'                    => $rewrite,
	);
	register_taxonomy( 'lc_custom_taxonomy', array( 'lc_custom_post_type' ), $args );

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