Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Taxonomy Heeramientas y Más

if ( ! function_exists( 'amk_categorias_producto_taxonomy' ) ) {

// Register Custom Taxonomy
function amk_categorias_producto_taxonomy() {

	$labels = array(
		'name'                       => _x( 'Categorías de producto', 'Taxonomy General Name', 'amk' ),
		'singular_name'              => _x( 'Categoría de producto', 'Taxonomy Singular Name', 'amk' ),
		'menu_name'                  => __( 'Familia de productos', 'amk' ),
		'all_items'                  => __( 'Todas', 'amk' ),
		'parent_item'                => __( 'Superior', 'amk' ),
		'parent_item_colon'          => __( 'Superior:', 'amk' ),
		'new_item_name'              => __( 'Nueva familia', 'amk' ),
		'add_new_item'               => __( 'Agregar Nueva Familia', 'amk' ),
		'edit_item'                  => __( 'Editar Familia', 'amk' ),
		'update_item'                => __( 'Actualizar Familia', 'amk' ),
		'separate_items_with_commas' => __( 'Separar familias con coma', 'amk' ),
		'search_items'               => __( 'Buscar familias de productos', 'amk' ),
		'add_or_remove_items'        => __( 'Agregar o eliminar familias', 'amk' ),
		'choose_from_most_used'      => __( 'Elegir entre las más usadas', 'amk' ),
		'not_found'                  => __( 'No encontrado', 'amk' ),
	);
	$rewrite = array(
		'slug'                       => 'familia_productos',
		'with_front'                 => true,
		'hierarchical'               => false,
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => true,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => true,
		'show_tagcloud'              => false,
		'rewrite'                    => $rewrite,
	);
	register_taxonomy( 'categorias_producto', array( 'custom_post_type' ), $args );

}

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

}