ฉันมีปัญหานี้อย่างแท้จริง 3 วันที่ผ่านมาแล้วผมเจอชุดมากกว่าที่wp.tutsplus.com ฉันสลับรหัสของตัวเองออกมาเพื่อตอบคำถามของคุณได้ดีขึ้น แต่นี่คือสิ่งที่ฉันได้รับหลังจากจบซีรีส์ นอกจากนี้โปรดทราบว่านี่ยังไม่ได้ทดสอบ
// 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);
ในทางทฤษฎีคุณสามารถสลับสิ่งที่คุณต้องการใน URL ที่เก็บไว้ใน$projects_structure
ตัวแปรสิ่งที่มีเพียงสิ่งที่ฉันใช้
ขอให้โชคดีและเช่นเคย - อย่าลืมกลับมาอีกครั้งและแจ้งให้เราทราบว่ามันทำงานอย่างไร! :)