Me encuentro en un lio
Necesito crear una estructura del tipo
mipagina.com/CUSTOM-POST-TYPE/CATEGORY/SINGLE-POST
Con la nueva caracteristica de wordpress pero no encuentro el modo de leer los archivos de category ya que solo sobre escribe los slugs
Mi codigo esta así:
Código PHP:
register_post_type('impulso-al-deporte', array(
'labels' => array(
'name' => 'Impulso al Deporte',
'singular_name' => 'Impulso al Deporte',
'add_new' => 'Agrega nueva nota',
'all_items' => 'Todos',
'add_new_item' => 'Agregar nueva nota',
'edit_item' => 'Editar notas',
'new_item' => 'Nueva nota',
'view_item' => 'Ver notas',
'search_items' => 'Buscar notas',
'not_found' => 'No se encuentra',
'not_found_in_trash' => 'No se encuentra en la papelera',
'menu_name' => 'Impulso al deporte'
),
'public' => true,
'publicly_queryable' => true,
'has_archive' => true,
/* 'rewrite' => array('slug' => 'micro-sitio'), */
'menu_position' => 6,
'supports' => array(
'title',
'editor',
'excerpt',
'custom-fields',
'comments',
'thumbnail'
)
));
$labelsMS = array(
'name' => _x('Eventos', 'taxonomy general name'),
'singular_name' => _x('Deporte', 'taxonomy singular name'),
'search_items' => __('Buscar deporte'),
'all_items' => 'Todos los deportes',
'parent_item' => 'Superior',
'parent_item_colon' => 'Superior:',
'edit_item' => 'Editar deporte',
'update_item' => 'Actualizar tipo',
'add_new_item' => 'Nuevo tipo',
'new_item_name' => 'Nuevo tipo',
'menu_name' => 'Tipos',
);
register_taxonomy('Deportes',
array('impulso-al-deporte'),
array(
'hierarchical' => true,
'labels' => $labelsMS,
'show_ui' => true,
'query_var' => true,
'publicly_queryable' => true,
'rewrite' => array('slug' => 'impulso-al-deporte'),
));
mipagina.com/CUSTOM-POST-TYPE/SINGLE-POST
Y si por ejemplo quiero crear
mipagina.com/impulso-al-deporte/box/paquiao
Sencillamente solo sale
mipagina.com/impulso-al-deporte/paquiao
Desde ya,, les agradezco mucho su tiempo