Taxonomy origenes
// Register Custom Taxonomy
function origen_custom_taxonomy() {
$labels = array(
'name' => _x( 'Orígenes', 'Taxonomy General Name', 'text_domain' ),
'singular_name' => _x( 'Origen', 'Taxonomy Singular Name', 'text_domain' ),
'menu_name' => __( 'Origen', 'text_domain' ),
'all_items' => __( 'Todos los origenes', 'text_domain' ),
'parent_item' => __( 'Origen padre', 'text_domain' ),
'parent_item_colon' => __( 'Origen padre:', 'text_domain' ),
'new_item_name' => __( 'Nuevo origen', 'text_domain' ),
'add_new_item' => __( 'Agregar nuevo origen', 'text_domain' ),
'edit_item' => __( 'Editar origen', 'text_domain' ),
'update_item' => __( 'Actualizar origen', 'text_domain' ),
'view_item' => __( 'Ver origen', 'text_domain' ),
'separate_items_with_commas' => __( 'Separate items with commas', 'text_domain' ),
'add_or_remove_items' => __( 'Agregar o remover origenes', 'text_domain' ),
'choose_from_most_used' => __( 'Choose from the most used', 'text_domain' ),
'popular_items' => __( 'Origenes populares', 'text_domain' ),
'search_items' => __( 'Buscar origenes', 'text_domain' ),
'not_found' => __( 'No encontrado', 'text_domain' ),
'no_terms' => __( 'No existen origenes', 'text_domain' ),
'items_list' => __( 'Lista de orígenes', 'text_domain' ),
'items_list_navigation' => __( 'Items list navigation', '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( 'origen', array( 'modismos' ), $args );
}
add_action( 'init', 'origen_custom_taxonomy', 0 );