在Woocommerce中,我想根据您正在查看的类别显示一些过滤器。
不要担心已排序的过滤器。
我想要解决的是如何检查所查看的类别是否有父母。
最终它会是这样的(对于上下文,过滤器是指向当前父项的子类别/子项的链接):
if ($current_category['parent'] == 0){
//No parent, show top level category filters
show-parent-0-filters();
} elseif ($current_category['parent'] == 1)
//Show second level categories filters
show-parent-1-filters();
} elseif ($current_category['parent'] == 2)
//Show third level categories filters
show-parent-2-filters();
}
在Woocommerce中查看类别页面时,我一直坚持检索当前类别的父级。
有人能指出我正确的方向吗?