我试图从woocommerce的3深度类别结构中获得我的第二级别类别。
但它总是会返回第3级。
/**
* Get second level cat
*/
function get_second_cat_level($parent_id) {
$subcats = array();
$args = array(
'parent' => $parent_id,
'taxonomy' => 'product_cat',
'orderby' => 'name',
'show_count' => 0,
'pad_counts' => 0,
'hierarchical' => 1,
'hide_empty' => 0
);
$cats = get_categories($args);
foreach ($cats as $cat) {
$subcats[] = $cat;
var_dump($cat);
}
return $cats;
}
我假设$parent_id
是parent_category的字符串id。
这真是太疯狂了。
答案 0 :(得分:0)
由于似乎没有人能为我提供任何解决方案,我将分享一个我用过的解决方案。但请注意,这对3个深度级别类别非常具体。
我创建了2个函数: 一个从id,slug或给定类别的名称中获取类别对象:
function get_product_category($field, $value) {
$authorized_fields = array(
'term_id',
'name',
'slug'
);
// Check if field and value are set and not empty
if (!isset($field) || empty($field) || !isset($value) || empty($value)) {
$response = "Error : check your args, some are not set or are empty.";
}
else {
// Check if the specified field is part of the authorised ones
if (!in_array($field, $authorized_fields)) {
$response = "Unauthorised field $field"; }
else {
// init exists var to determine later if specified value matches
$exists = false;
$product_cats = get_terms('product_cat', array(
'hide_empty' => 0,
'orderby' => 'name'
));
// the loop will stop once it will have found the matching value in categories
foreach ($product_cats as $product_cat) {
if($product_cat->$field == $value) {
$response = $product_cat;
$exists = true;
break;
}
}
if ($exists == false) {
$response = array(
"message" => "Error with specified args",
"field" => "$field",
"value" => "$value"
);
}
}
}
return $response;
}
第二个函数使用第一个函数返回第二级别类别。它使用一个参数$dep
,当单独测试为false时,返回另一个我需要的其他结果。所以不要注意它。
function get_first_child_cat_only ($cat_id, $dep = true) {
// Array which handle all the 2nd child sub cats
$subcats = array();
// $cat_id is the parent (1st level) cat id
$categories = get_term_children( $cat_id, 'product_cat' );
foreach ($categories as $sub_category) {
if ($dep == true && get_term_children( $sub_category, 'product_cat' )) {
$subcats[] = get_product_category('term_id', $sub_category);
}
elseif($dep == false) {
$subcats[] = get_product_category('term_id', $sub_category);
}
}
return $subcats;
}
小解释:上面的函数只返回子类别的子类别。所以它忽略了没有子节点的最后一个(第三个),只返回第二个。
这当然可以改善,我知道我可能会得到一些“批评”,实际上,我希望如此!所以不要犹豫:)