Código PHP:
add_action('init', 'crear_posttipo_videofemucor');
function crear_posttipo_videofemucor()
{
register_post_type( 'videofemucor',
array(
'labels' => array(
'name' => __( 'Videos' ),
'singular_name' => __( 'Video' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'videos'),
)
);
}
Código PHP:
add_action('init', 'register_df', 1);
function register_df() {
$labels = array(
'name' => _x( 'Categrias Videos', 'taxonomy general name' ),
'singular_name' => _x( 'categoria', 'taxonomy singular name' ),
'search_items' => __( 'Buscar categorías' ),
'popular_items' => __( 'Nube de Categorías' ),
'all_items' => __( 'Todas' ),
'edit_item' => __( 'Editar categoría' ),
'update_item' => __( 'Actualizar categoría' ),
'add_new_item' => __( 'Añadir nueva categoría' ),
'new_item_name' => __( 'Nuevo nombre de categoría' ),
'separate_items_with_commas' => __( 'Separar categorías con comas' ),
'add_or_remove_items' => __( 'Añadir o borrar categorías' ),
'choose_from_most_used' => __( 'Elegir de entre los categorías más populares' )
);
$args = array(
'hierarchical' => true,
'public' => true,
'labels' => $labels,
'show_ui' => true,
'rewrite' => array( 'slug' => 'cetagorias' ),
'query_var' => $taxonomy,
'label' => 'categorias',
'show_tagcloud' =>true,
);
register_taxonomy('categorias', 'videofemucor', $args);
}
pero al crear el archive-videofemucor.php no me lo agarra y mi agarra el archive.php común.
si voy a la url wordpress/videos/ si que me lo muestra pero por ejemplo si voy a una taxonomia wordpress/cetagorias/actualidad/ no me lo agarra
ya no se por donde ni que tocar más