是否可以仅显示正在查看的类别页面的子类别。我有很多类别,所有类别都有自己的子类别,但我不想在主页上显示它们。我想仅在侧栏中显示该类别页面的子类别。有可能吗?
请建议
答案 0 :(得分:0)
试试这个:
$parent_term_id = 4 // term id of parent term
$taxonomies = array(
'category',
);
$args = array(
'parent' => $parent_term_id,
// 'child_of' => $parent_term_id,
);
$terms = get_terms($taxonomies, $args);