Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

cpt Tipos de Proyectos Ale

// Register Custom Taxonomy
function tax_tipodeproyectos() {

	$labels = array(
		'name'                       => _x( 'Tipos de Proyectos', 'Taxonomy General Name', 'text_domain' ),
		'singular_name'              => _x( 'Tipo de Proyecto', 'Taxonomy Singular Name', 'text_domain' ),
		'menu_name'                  => __( 'Tipos de Proyectos', 'text_domain' ),
		'all_items'                  => __( 'Todos', 'text_domain' ),
		'parent_item'                => __( 'Parent Item', 'text_domain' ),
		'parent_item_colon'          => __( 'Parent Item:', 'text_domain' ),
		'new_item_name'              => __( 'Nuevo Tipo', 'text_domain' ),
		'add_new_item'               => __( 'Agregar Nuevo Tipo', 'text_domain' ),
		'edit_item'                  => __( 'Editar Tipo', 'text_domain' ),
		'update_item'                => __( 'Actualizar Tipo', 'text_domain' ),
		'view_item'                  => __( 'Ver Tipo', 'text_domain' ),
		'separate_items_with_commas' => __( 'Separar con coma', 'text_domain' ),
		'add_or_remove_items'        => __( 'Agregar o Remover tipos', 'text_domain' ),
		'choose_from_most_used'      => __( 'Cambiar de usuario', 'text_domain' ),
		'popular_items'              => __( 'Tipos Populares', 'text_domain' ),
		'search_items'               => __( 'Buscar tipos', 'text_domain' ),
		'not_found'                  => __( 'Tipo No encontrado', 'text_domain' ),
		'no_terms'                   => __( 'Sin Tipo', 'text_domain' ),
		'items_list'                 => __( 'Listado de tipos', '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,
		'show_in_rest'               => true,
	);
	register_taxonomy( 'tipo_de_proyectos', array( 'proyectos' ), $args );

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