检查当前类别是否是另一个的孩子

时间:2014-01-31 12:12:33

标签: php wordpress woocommerce categories

我对WooCommerce很陌生并且遇到一些问题。

我有三个菜单; Sportmenu Erhvervmenu Interventionmenu

当我属于运动及其儿童类别时,它必须显示Sportmenu。当我属于Erhverv类别及其子类别时,它必须显示Erhvervmenu。

我不知道该怎么做,我尝试了各种各样的事情。

1 个答案:

答案 0 :(得分:0)

这样的事情可能是:

<? if ( have_posts() ) { while ( have_posts() ) { the_post();
    $categ = $product->get_categories();
    $term = get_term_by ( 'name' , strip_tags($categ), 'product_cat' );
    if( $term->parent!=0 && ( $term->slug == YOUR_CAT_SLUG ) ){
        // DO SOMETHING
     } // end if term
    } // end while
}// end if have_posts
?>