我有一个自定义的分类法,有两个级别的术语。
父项子项我正在使用自定义存档。带有一些HTML的php模板,我只想在没有子术语的术语上显示。
这是我试过的。。。
$taxonomy = \'custom_tax\';
$term = get_queried_object();
$children = get_terms( $term->taxonomy, array( \'parent\' => $term->term_id ) );
if(!$children) {
echo \'<p>HTML only terms without child terms</p>\';
}
如果它是子术语,但不是在没有子术语的父术语上,则此操作有效!
有什么帮助吗?