Dias de Evento
// Register Custom Taxonomy
function conec_taxonomy_evento() {
$labels = array(
'name' => 'Dias do Evento',
'singular_name' => 'Dia do Evento',
'menu_name' => 'Dias de Evento',
'all_items' => 'Todos os dias',
'parent_item' => 'Parent Item',
'parent_item_colon' => 'Parent Item:',
'new_item_name' => 'Novo dia',
'add_new_item' => 'Adicionar novo dia',
'edit_item' => 'Editar Item',
'update_item' => 'Atualizar Item',
'view_item' => 'Ver 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',
);
$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( 'evento', array( 'programacao' ), $args );
}
add_action( 'init', 'conec_taxonomy_evento', 0 );