P&E | Categorías Intranet
// Register Custom Taxonomy
function intranet_cat_tax() {
$labels = array(
'name' => _x( 'Categorías', 'Taxonomy General Name', 'text_domain' ),
'singular_name' => _x( 'Categoría', 'Taxonomy Singular Name', 'text_domain' ),
'menu_name' => __( 'Categorías', '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' => __( 'Agregar Nuevo Nombre', 'text_domain' ),
'add_new_item' => __( 'Agregar Nuevo Item', 'text_domain' ),
'edit_item' => __( 'Editar', 'text_domain' ),
'update_item' => __( 'Actualizar', 'text_domain' ),
'view_item' => __( 'Ver', 'text_domain' ),
'separate_items_with_commas' => __( 'Separar con comas', 'text_domain' ),
'add_or_remove_items' => __( 'Agregar o remover', 'text_domain' ),
'choose_from_most_used' => __( 'Las más utilizadas', 'text_domain' ),
'popular_items' => __( 'Populares', 'text_domain' ),
'search_items' => __( 'Buscar', 'text_domain' ),
'not_found' => __( 'No encontrado', 'text_domain' ),
'no_terms' => __( 'Sin items', 'text_domain' ),
'items_list' => __( 'Listado', 'text_domain' ),
'items_list_navigation' => __( 'Listado de navegación', '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( 'intranet_cat', array( 'intranet_post' ), $args );
}
add_action( 'init', 'intranet_cat_tax', 0 );