仅显示wordpress中选定类别页面的子类别

时间:2015-06-23 04:48:17

标签: wordpress wordpress-plugin

是否可以仅显示正在查看的类别页面的子类别。我有很多类别,所有类别都有自己的子类别,但我不想在主页上显示它们。我想仅在侧栏中显示该类别页面的子类别。有可能吗?

请建议

1 个答案:

答案 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);