如何检查类别是否具有父级WooComerce

时间:2020-04-15 13:53:27

标签: php wordpress woocommerce categories

我有此代码,但无法正常工作。我正在尝试检查类别是否具有父项,但总是返回此代码,然后类别没有父项。

$cat_id = $wp_query->get_queried_object()->term_id;
echo $cat_id;

function category_has_parent($cat_id)
{
    $category = get_category($cat_id);
    if ($category->parent > 0) {
        return true;
    }
    return false;
}

if (category_has_parent($cat_id)) {
    echo 'have parent ';
}else{
    echo 'does not have a parent';
}

0 个答案:

没有答案