【发布时间】:2019-02-02 03:23:45
【问题描述】:
如果我位于 WooCommerce 中所有类别的概览页面,我该如何检查?我在这里尝试过这个功能,但它不起作用:
/**
* Function to check if it's category overview page
*
* @return bool
*/
function is_category_overview() {
$cat = get_query_var( 'product_cat' );
$category = get_term_by( 'slug', $cat, 'product_cat' );
return ! empty( $category ) && $category->parent !== 0;
}
所以我的意思是我可以看到所有类别的页面,当我点击一个类别时,我会被重定向到 WooCommerce 中的所有产品。
【问题讨论】:
标签: php wordpress woocommerce