Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

tecnologias

// Register Custom Taxonomy
function tecnología() {

	$labels = array(
		'name'                       => 'Tecnologías',
		'singular_name'              => 'Tecnologia',
		'menu_name'                  => 'Tecnologías',
		'all_items'                  => 'Todas las tecnologías',
		'parent_item'                => 'Parent Item',
		'parent_item_colon'          => 'Parent Item:',
		'new_item_name'              => 'Nueva tecnología',
		'add_new_item'               => 'Agregar nueva tecnología',
		'edit_item'                  => 'Editar tecnología',
		'update_item'                => 'Actualizar tecnología',
		'view_item'                  => 'Ver tecnología',
		'separate_items_with_commas' => 'Separar las tecnologías con coma',
		'add_or_remove_items'        => 'Agregar o quitar tecnologías',
		'choose_from_most_used'      => 'Elegir de la más usadas',
		'popular_items'              => 'Tecnologías populares',
		'search_items'               => 'Buscar tecnología',
		'not_found'                  => 'Tecnología no encontrada',
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => false,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => true,
		'show_tagcloud'              => true,
	);
	register_taxonomy( 'tecnologia', array( 'post' ), $args );

}

// Hook into the 'init' action
add_action( 'init', 'tecnología', 0 );