我需要告诉我正在查看的当前自定义分类存档页面是否具有子类别。我遇到的情况是,有很多带有孩子的自定义类别,并且该站点仅在行尾显示帖子。否则,它应该显示指向下一步的类别的链接。我已经找到了此代码段,但它似乎不适用于自定义分类法。
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
}
?>