HUSKY - Products Filter Professional for WooCommerce

woof_terms_where_hidden_childs

子タームを持つ任意のタームに対して、必要に応じて使用します。 その子タームを非表示にする  チェックボックス、ラジオ、セレクト、mselect、ラベルのいずれか。

add_filter('woof_terms_where_hidden_childs', function($term_id)
    {
        $hide_array=array(11,22,33,44,55,66,77);
        if (in_array($term_id, $hide_array))
        {
            return true;
        }
        
        return false;
    }, 1, 1);