我正在尝试使用以下代码在WordPress中创建子类别:
$cid = wp_insert_term(
$term_name, // the term
'product_cat',// the taxonomy
array(
'description'=> 'asdasd',
'slug' => $term_slug,
'parent' => $parent_term_id
)
);
它在数据库中创建子类别,但是当我尝试获取所有子类别时,它显示空数组。这是我尝试过的:
$args = array(
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => 0,
'name' => '',
'parent' => $parent_term_id
);
$terms_sub = get_terms('product_cat', $args);
print_r($terms_sub);
这也是:
$all_cats = get_categories($args);
请帮忙。感谢
答案 0 :(得分:0)
试试这个我还没有测试过,但它应该可行。您的代码无法正常工作的原因是wordpress已经改变了它从4.5.0版开始工作的方式。
$terms_sub = get_terms(
array(
'taxonomy' => 'product_cat',
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => false,
'parent' => $parent_term_id
)
);
echo '<pre>';
print_r($terms_sub);
echo '</pre>';
Codex参考:
https://developer.wordpress.org/reference/functions/get_terms/#description