我想要创建一个函数必须这样做,例如:
我有10个类别,其中3个是特殊的,他们的名字是:“Alpha”,“Bravo”和“Charlie”
在函数中,我必须有一个类别为“Alpha”,“Bravo”和“Charlie”的类别ID的数组
你能帮我吗?
NEW EDIT(新代码,我不是专业的php编码器,你能告诉我,如果是对的吗?):
function my_add_woo_cat_classes($classes) {
global $restricted_cart_items ;
if ( is_null( $cart )){
$restricted_cart_items=array();
}
global $post;
$terms = get_the_terms( $post->ID, 'product_cat' );
foreach ($terms as $term) {
$product_cat_id = $term->term_id;
break;
}
$restricted_category= array(11,22);
if (in_array( $product_cat_id, $restricted_category)){
$current_product= $product->id;
$restricted_cart_items=array($current_product);
}
return $restricted_cart_items;
}