Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Taxonomía Tipo Material interactivo

// Register Custom Taxonomy
function tipo_interactivo_taxonomy() {

	$labels = array(
		'name'                       => _x( 'Tipos', 'Taxonomy General Name', 'text_domain' ),
		'singular_name'              => _x( 'Tipo', 'Taxonomy Singular Name', 'text_domain' ),
		'menu_name'                  => __( 'Tipo', 'text_domain' ),
		'all_items'                  => __( 'Todos los tipos', 'text_domain' ),
		'parent_item'                => __( 'Tipo padre', 'text_domain' ),
		'parent_item_colon'          => __( 'Tipo padre:', 'text_domain' ),
		'new_item_name'              => __( 'Nombre nuevo tipo', 'text_domain' ),
		'add_new_item'               => __( 'Agregar', '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 borrar', 'text_domain' ),
		'choose_from_most_used'      => __( 'Elegir más usadas', 'text_domain' ),
		'popular_items'              => __( 'Populares', 'text_domain' ),
		'search_items'               => __( 'Buscar tipo', 'text_domain' ),
		'not_found'                  => __( 'No encontrado', 'text_domain' ),
		'no_terms'                   => __( 'No existen ítems', 'text_domain' ),
		'items_list'                 => __( 'Lista de ítems', 'text_domain' ),
		'items_list_navigation'      => __( 'Ítems 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( 'tipo', array( 'interactivos' ), $args );

}
add_action( 'init', 'tipo_interactivo_taxonomy', 0 );