📜  如何检查产品是否属于单个产品的多个类别 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:26.850000             🧑  作者: Mango

代码示例1
if( has_term( array( 'laptop', 'fridge', 'hats', 'magic wand' ), 'product_cat' ) ) :

// Do stuff here

else :

// Do some other stuff

endif;