gpt4 book ai didi

php - 如何在 wordpress 中通过父类别 ID 获取子类别?

转载 作者:可可西里 更新时间:2023-11-01 13:41:24 25 4
gpt4 key购买 nike

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

最佳答案

你需要使用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' 代替;

Note: the difference between child_of and parent is that where parent only gets direct children of the parent term (ie: 1 level down), child_of gets all descendants (as many levels as are available)

食品法典:get_terms

关于php - 如何在 wordpress 中通过父类别 ID 获取子类别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22443352/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com