How to check if product has a specific product attribute in Woocommerce

强颜欢笑 提交于 2020-06-12 04:13:10

问题


I would like to identify if a product has an attribute or not. For example:

if (product has attribute 'pa_color')
{
    //do something
}

How can I accomplish this?


回答1:


You simply can use the WC_Product method get_attribute() this way:

// (If needed) Get an instance of the WC_Product Object from the product ID
$product = wc_get_product( $product_id );

// Get the product attribute value(s)
$color = $product->get_attribute('pa_color');

// if product has attribute 'pa_color' value(s)
if( ! empty( $color ) ){
    // do something
} else {
    // No product attribute is set for this product
}


来源:https://stackoverflow.com/questions/49712333/how-to-check-if-product-has-a-specific-product-attribute-in-woocommerce

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!