URL 형식이 균일하도록 사용자 정의 게시물 유형에서 상위 하위 관계를 유지하려면 어떻게해야합니까? 예를 들어 최대 4 단계까지 URL 구조를 만들고 싶습니다.
example.com/sponsor-child/disadvantaged-community/gita-magar
플러그인없이 가능합니까? 단일 페이지 URL로 이동하면 3 단계로 끝납니다.
답변
당신의 register_post_type
전화에, 당신은 다음과 같은 논쟁이 있는지 확인하십시오 :
register_post_type(
'my_post_type',
array(
'hierarchical' => true,
'public' => true,
'rewrite' => array(
'slug' => 'my_post_type',
'with_front' => false,
),
'supports' => array(
'page-attributes' /* This will show the post parent field */,
'title',
'editor',
'something-else',
),
// Other arguments
)
);
퍼머 링크가 플러시되었는지 확인하십시오 (설정> 퍼머 링크 페이지를 방문하십시오).
이제 새를 만들 때 my_post_type
부모를 다른 부모로 설정하면 영구 링크가 다음과 같이 보입니다.
http://example.com/parent-post-type/my-post-type/
당신은 당신이 필요로 많은 수준을 갈 수 있습니다.