보고있는 현재 사용자 정의 분류 아카이브 페이지에 하위 카테고리가 있는지 여부를 말해야합니다. 어린이와 함께 많은 맞춤 카테고리가 있으며 사이트가 줄 끝에 게시물을 표시하는 경우가 있습니다. 그렇지 않으면 다음 단계로 넘어가는 카테고리에 대한 링크가 표시됩니다. 이 스 니펫을 찾았지만 맞춤 분류법에서는 작동하지 않는 것 같습니다.
function category_has_children() {
global $wpdb;
$term = get_queried_object();
$category_children_check = $wpdb->get_results(" SELECT * FROM wp_term_taxonomy WHERE parent = '$term->term_id' ");
if ($category_children_check) {
return true;
} else {
return false;
}
}
<?php
if (!category_has_children()) {
//use whatever loop or template part here to show the posts at the end of the line
get_template_part('loop', 'index');
}
else {
// show your category index page here
}
?>