Bu sorunu tam anlamıyla 3 gün önce yaşadım, sonra wp.tutsplus.com adresinde bir dizi tökezledi . Sorunuzu daha iyi karşılamak için kendi kodumu değiştirdim, ancak seriyi takip ettikten sonra bıraktım. Ayrıca, bunun test edilmediğini unutmayın.
// 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);
Teorik olarak, $projects_structure
değişkende depolanan URL’de ne istersen onu değiştirebilirsin , ne kullandığımda ne var ne var.
İyi şanslar ve her zaman olduğu gibi - geri döndüğünüzden ve nasıl çalıştığını bize bildirdiğinizden emin olun! :)