Hi Michael, thanks for the quick response. I used the following code in my functions.php file
add_action( ‘init’, ‘crear_formatos’, 0 );
function crear_formatos()
{
$formatos = array(
‘name’ => _x( ‘formatos’, ‘taxonomy general name’ ),
‘singular_name’ => _x( ‘formatos’, ‘taxonomy singular name’ ),
‘search_items’ => __( ‘Buscar formatos’ ),
‘popular_items’ => __( ‘Formatos populares’ ),
‘all_items’ => __( ‘Todos los formatos’ ),
‘parent_item’ => null,
‘parent_item_colon’ => null,
‘edit_item’ => __( ‘Editar formato’ ),
‘update_item’ => __( ‘Actualizar formato’ ),
‘add_new_item’ => __( ‘A?adir nuevo formato’ ),
‘new_item_name’ => __( ‘Nuevo nombre de formato’ ),
‘separate_items_with_commas’ => __( ‘Separar formatos con comas’ ),
‘add_or_remove_items’ => __( ‘A?adir o remover formatos’ ),
‘choose_from_most_used’ => __( ‘Escoger de los formatos más usados’ ),
‘menu_name’ => __( ‘formatos’ ),
);
register_taxonomy(‘formatos’,’post’,array(
‘hierarchical’ => false,
‘labels’ => $formatos,
‘show_ui’ => true,
‘query_var’ => true,
‘rewrite’ => true,
));
}
The url with the permalink is working, but the link on each of the items generated by the widget is in other format =/