Diabelife | Categorías Empresas
// Register Custom Taxonomy
function categoria_empresas_taxonomy() {
$labels = array(
'name' => _x( 'Categorías Empresas', 'Taxonomy General Name', 'text_domain' ),
'singular_name' => _x( 'Categoría Empresa', 'Taxonomy Singular Name', 'text_domain' ),
'menu_name' => __( 'Categorías Empresas', 'text_domain' ),
'all_items' => __( 'Todas las categorías', 'text_domain' ),
'parent_item' => __( 'Item Superior', 'text_domain' ),
'parent_item_colon' => __( 'Item Superior:', 'text_domain' ),
'new_item_name' => __( 'Nuevo Nombre Categoría', 'text_domain' ),
'add_new_item' => __( 'Agregar Nueva Categoría', 'text_domain' ),
'edit_item' => __( 'Editar Categoría', 'text_domain' ),
'update_item' => __( 'Actualiza Categoría', 'text_domain' ),
'view_item' => __( 'Ver Categoría', '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 más utilizadas', 'text_domain' ),
'popular_items' => __( 'Categorías populares', '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( 'business_category', array( 'empresas' ), $args );
}
// Hook into the 'init' action
add_action( 'init', 'categoria_empresas_taxonomy', 0 );