Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

P&E – Categorías Productos

// Register Custom Taxonomy
function producto_cat_taxonomy() {

	$labels = array(
		'name'                       => _x( 'Categorías Productos', 'Taxonomy General Name', 'text_domain' ),
		'singular_name'              => _x( 'Categoría Producto', 'Taxonomy Singular Name', 'text_domain' ),
		'menu_name'                  => __( 'Categorías Productos', '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' ),
		'separate_items_with_commas' => __( 'Separar con comas', 'text_domain' ),
		'search_items'               => __( 'Buscar', 'text_domain' ),
		'add_or_remove_items'        => __( 'Agregar o remover', 'text_domain' ),
		'choose_from_most_used'      => __( 'Escoger entre más utilizados', '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'              => false,
	);
	register_taxonomy( 'categoria_productos', array( 'productos' ), $args );

}

// Hook into the 'init' action
add_action( 'init', 'producto_cat_taxonomy', 0 );