Webiverse에서 페이지를 사용자 정의 게시물 유형의 부모로 할당하는 것에 대한 많은 게시물을 보았습니다. 4 시간 후에 나는 해결책을 찾을 수없고 도움이 필요하다. "Our People"페이지의 부모 인 "About"페이지를 작성했습니다. 또한 "People"이라는 사용자 정의 게시물 유형을 만들었습니다. 그리고 "Our People"페이지를위한 커스텀 페이지 템플릿을 만들었습니다. Permalink 구조는 단일 "사람"페이지에 도달 할 때까지 잘 보입니다. 예를 들어 : John Smith 's Page (퍼머 링크)가 올바르지 않습니다.
맞춤 게시물 유형 :
원하는 퍼머 링크 구조 : / about-us / our-people / john-smith
실제로 Permalink 구조 : / our-people / john-smith
직원 페이지 구조 : / about-us / our-people
"about-us"는 페이지이고 "our-people"는 페이지이며 사용자 정의 게시물 유형 "people"에 대한 슬러그 재 작성입니다. 계층 적 설정을 변경하려고했지만 성공하지 않고 "about-us / our-people"을 다시 작성에 직접 추가하려고했습니다.
Functions.php :
function codex_custom_init() {
// Our People
$people_label = array(
'name' => 'People',
'singular_name' => 'People',
'add_new' => 'Add People',
'add_new_item' => 'Add New People',
'edit_item' => 'Edit People',
'new_item' => 'New People',
'all_items' => 'All People',
'view_item' => 'View People',
'search_items' => 'Search People',
'not_found' => 'No People found',
'not_found_in_trash' => 'No People found in Trash',
'parent_item_colon' => '',
'menu_name' => 'People',
);
$people_args = array (
'labels' => $people_label,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'our-people'),
'capability_type' => 'page',
'has_archive' => true,
'hierarchical' => true,
'menu_position' => null,
'menu_icon' => get_template_directory_uri() . '/images/icons/people.png',
'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt','page-attributes'),
);
register_post_type('people', $people_args);
}
내 사용자 지정 템플릿 : people.php people-single.php