请, 任何人都可以帮助我, 我是wordpress世界中的新手。如何在WordPress中通过父类别ID获取子类别?
#1你需要使用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的区别在于, parent仅获得父项的直接子项(即:1级下移), child_of获得所有后代(尽可能多的级别)【如何在WordPress中通过父类别ID获取子类别()】法典:get_terms
#2这是从特定父母那里获得子女类别的最简单方法
$parent_id = 12;
$termchildren = get_terms('product_cat', array('child_of' =>
$parent_id));
推荐阅读
- 如何基于子域url进行get_template_part()()
- 如何在Div Builder中的子模块上获取父模块的att值()
- 如何解决小部件之间的空间()
- 如何在WordPress中获取最新的标签
- 如何获取一个类别中的多少帖子并将其显示在wordpress主题上
- 业务-应用-数据-技术架构的正向设计方法
- Linux远程访问及控制
- Spring cloud/Alibaba微服务架构实战完整代码资料
- linux 命令150条