Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

tax_ubicaciones

// Register Custom Taxonomy
function azo_custom_taxonomy() {

	$labels = array(
		'name'                       => 'Ubicaciones',
		'singular_name'              => 'Ubicacion',
		'menu_name'                  => 'Ubicaciones',
		'all_items'                  => 'Todas las Ubicaciones',
		'parent_item'                => 'Parent Item',
		'parent_item_colon'          => 'Parent Item:',
		'new_item_name'              => 'Nueva Ubicaciones',
		'add_new_item'               => 'Agregar Nueva',
		'edit_item'                  => 'Editar Ubicacion',
		'update_item'                => 'Actualizar Ubicacion',
		'separate_items_with_commas' => 'Separar items por comas',
		'search_items'               => 'Buscar Ubicaciones',
		'add_or_remove_items'        => 'Agregar o Remover Ubicaciones',
		'choose_from_most_used'      => 'Seleccionar las mas usadas',
		'not_found'                  => '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( 'ubicaciones', 'custom_post_type', $args );

}

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