如何在wordpress中按父类别ID获取子类别?

时间:2014-03-16 21:35:47

标签: php wordpress wordpress-theming

拜托,任何人都可以帮助我,我是wordpress世界的新手。 如何在wordpress中按父类别ID获取子类别?

2 个答案:

答案 0 :(得分:7)

您需要使用get_terms($taxonomies, $args);

$parent_term_id = 4; // term id of parent term (edited missing semi colon)

$taxonomies = array( 
    'category',
);

$args = array(
    'parent'         => $parent_term_id,
    // 'child_of'      => $parent_term_id, 
); 

$terms = get_terms($taxonomies, $args);

您也可以使用'child_of'代替;

  

注意:child_of和parent之间的区别在于父级只获得父级术语的直接子级(即:1级别),child_of获取所有后代(可用的级别)

Codex:get_terms

答案 1 :(得分:3)

以下是从特定父级获取子类别的最简单方法

$parent_id = 12;
$termchildren = get_terms('product_cat',array('child_of' => $parent_id));