Ho avuto questo problema letteralmente 3 giorni fa, poi mi sono imbattuto in una serie su wp.tutsplus.com . Ho scambiato il mio codice per soddisfare meglio la tua domanda, ma questo è quello che ho finito dopo aver seguito la serie. Inoltre, tieni presente che questo non è testato.
// sets custom post type
function my_custom_post_type() {
register_post_type('Projects', array(
'label' => 'Projects','description' => '',
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'capability_type' => 'post',
'hierarchical' => false,
'publicly_queryable' => true,
'rewrite' => false,
'query_var' => true,
'has_archive' => true,
'supports' => array('title','editor','excerpt','trackbacks','custom-fields','comments','revisions','thumbnail','author','page-attributes'),
'taxonomies' => array('category','post_tag'),
// there are a lot more available arguments, but the above is plenty for now
));
}
add_action('init', 'my_custom_post_type');
// rewrites custom post type name
global $wp_rewrite;
$projects_structure = '/projects/%year%/%monthnum%/%day%/%projects%/';
$wp_rewrite->add_rewrite_tag("%projects%", '([^/]+)', "project=");
$wp_rewrite->add_permastruct('projects', $projects_structure, false);
Teoricamente, potresti scambiare quello che vuoi nell'URL memorizzato nella $projects_structure
variabile, cosa c'è che è esattamente quello che ho finito per usare.
Buona fortuna e, come sempre, assicurati di tornare e facci sapere come ha funzionato! :)