Garden
// Register Custom Taxonomy
function custom_taxonomy_garden() {
$labels = array(
'name' => 'Garden',
'singular_name' => 'Garden',
'menu_name' => 'Garden',
'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( 'garden', array( 'post' ), $args );
}
// Hook into the 'init' action
add_action( 'init', 'custom_taxonomy_garden', 0 );