P&E – Categorías Proyectos
// Register Custom Taxonomy
function proyect_cat_taxonomy() {
$labels = array(
'name' => _x( 'Categorías Proyectos', 'Taxonomy General Name', 'text_domain' ),
'singular_name' => _x( 'Categoría Proyecto', 'Taxonomy Singular Name', 'text_domain' ),
'menu_name' => __( 'Categorías Proyectos', 'text_domain' ),
'all_items' => __( 'Todos los items', 'text_domain' ),
'parent_item' => __( 'Item superior', 'text_domain' ),
'parent_item_colon' => __( 'Item superior:', 'text_domain' ),
'new_item_name' => __( 'Nombre nuevo item', 'text_domain' ),
'add_new_item' => __( 'Agregar nuevo item', 'text_domain' ),
'edit_item' => __( 'Editar', 'text_domain' ),
'update_item' => __( 'Actualizar', 'text_domain' ),
'view_item' => __( 'View Item', 'text_domain' ),
'separate_items_with_commas' => __( 'Separar con comas', 'text_domain' ),
'add_or_remove_items' => __( 'Agregar o remover', 'text_domain' ),
'choose_from_most_used' => __( 'Escoger entre más utilizados', 'text_domain' ),
'popular_items' => __( 'Popular Items', 'text_domain' ),
'search_items' => __( 'Buscar', 'text_domain' ),
'not_found' => __( 'No encontrado', 'text_domain' ),
);
$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( 'cat_proyectos', array( 'proyectos' ), $args );
}
// Hook into the 'init' action
add_action( 'init', 'proyect_cat_taxonomy', 0 );