function taxonomias_propias() {
register_taxonomy('artista', 'post', array(
'hierarchical' => false, 'label' => 'Artista',
'query_var' => true, 'rewrite' => true));
register_taxonomy('album', 'post', array(
'hierarchical' => false, 'label' => 'Album',
'query_var' => true, 'rewrite' => true));
register_taxonomy('genero', 'post', array(
'hierarchical' => false, 'label' => 'Género',
'query_var' => true, 'rewrite' => true));
register_taxonomy('autor', 'post', array(
'hierarchical' => false, 'label' => 'Autor',
'query_var' => true, 'rewrite' => true));
register_taxonomy('duracion', 'post', array(
'hierarchical' => false, 'label' => 'Duración',
'query_var' => true, 'rewrite' => true));
register_taxonomy('fecha', 'post', array(
'hierarchical' => false, 'label' => 'Fecha',
'query_var' => true, 'rewrite' => true));
}
add_action('init', 'taxonomias_propias', 0);