Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Argomenti

// Register Custom Taxonomy
function custom_taxonomy_argomenti() {

	$labels = array(
		'name'                       => 'Argomenti',
		'singular_name'              => 'Argomenti',
		'menu_name'                  => 'Argomenti',
		'all_items'                  => 'Tutti',
		'parent_item'                => 'Padre',
		'parent_item_colon'          => 'Padre:',
		'new_item_name'              => 'Nuovo',
		'add_new_item'               => 'Aggiungi nuovo',
		'edit_item'                  => 'Modifica',
		'update_item'                => 'Aggiorna',
		'separate_items_with_commas' => 'separa con virgola',
		'search_items'               => 'Cerca',
		'add_or_remove_items'        => 'aggiungi o rimuovi',
		'choose_from_most_used'      => 'scegli tra i più usati',
		'not_found'                  => 'non trovato',
	);
	$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( 'argomenti', array( 'post' ), $args );

}

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