我有此代码,但无法正常工作。我正在尝试检查类别是否具有父项,但总是返回此代码,然后类别没有父项。
$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';
}