Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

tax-produits-portes

// Register Custom Taxonomy
function tax_produits_portes() {

	$labels = array(
		'name'                       => 'Styles des portes',
		'singular_name'              => 'Style de portes',
		'menu_name'                  => 'Taxonomy',
		'all_items'                  => 'All Items',
		'parent_item'                => 'Parent Item',
		'parent_item_colon'          => 'Parent Item:',
		'new_item_name'              => 'New Item Name',
		'add_new_item'               => 'Add New Item',
		'edit_item'                  => 'Edit Item',
		'update_item'                => 'Update Item',
		'separate_items_with_commas' => 'Separate items with commas',
		'search_items'               => 'Search Items',
		'add_or_remove_items'        => 'Add or remove items',
		'choose_from_most_used'      => 'Choose from the most used items',
		'not_found'                  => 'Not Found',
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => true,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => true,
		'show_tagcloud'              => true,
	);
	register_taxonomy( 'produits_style_portes', array( 'produits-portes' ), $args );

}

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