Đánh một bức tường gạch như sau:
Tôi có:
- 1 loại bài tùy chỉnh được gọi là
cpt_community
- 1 phân loại tùy chỉnh được gọi là
tax_community
Nếu tôi đặt 'rewrite' => true
trong đăng ký CPT của mình, thì permalinks cho một mục nhập cho CPT này có dạng http://<domain>/cpt_community/test_item/
và tôi nhận được 404 khi duyệt đến nó.
Nếu tôi đặt 'rewrite' => false
, thì permalinks là http://<domain>/?cpt_community=test_item/
, và điều này hoạt động tốt.
Vì vậy, rõ ràng tôi đang làm điều gì đó sai / ngu ngốc - câu hỏi là, cái gì?
[Cập nhật]
- Sau mỗi thay đổi, tôi xóa quy tắc bằng cách đi tới Cài đặt> Permalinks (và lưu)
- Sau khi để mọi thứ một mình trong một giờ, mọi thứ đã bắt đầu hoạt động chính xác - vậy tại sao lại trì hoãn?
Mã
Đăng ký CPT
function community_post_type() {
$labels = array('name' => 'Community');
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => false,
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'has_archive' => true,
'supports' => array('title','editor','excerpt','custom-fields','comments','revisions','thumbnail','author','page-attributes')
);
register_post_type('cpt_community', $args);
}
add_action( 'init', 'community_post_type' );
Đăng ký phân loại tùy chỉnh
function community_tax_type() {
register_taxonomy(
'tax_community',
'cpt_community',
array( 'hierarchical' => false,
'label' => 'Community Content Type',
'show_ui' => true,'query_var' => true,
'rewrite' => true,
'singular_label' => 'Community Content Type',
'capabilities' => array('assign_terms' => 'edit_community_tags')
)
);
# allow roles to add community taxonomy tags to a community CPT
$roles = array("subscriber","contributor","author","editor","administrator");
foreach ($roles as $role_name) {
$role = get_role($role_name);
$role->add_cap("edit_community_tags");
}
}
add_action( 'init', 'community_tax_type' );