programing

Woocmerce에서 특정 상품 속성이 있는지 확인하는 방법

megabox 2023. 10. 1. 19:22
반응형

Woocmerce에서 특정 상품 속성이 있는지 확인하는 방법

제품에 속성이 있는지 확인하고 싶습니다.예를 들어,

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

어떻게 하면 이것을 해낼 수 있을까요?

당신은 단순히 사용할 수 있습니다.WC_Product방법get_attribute()이런 식으로:

// (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
}

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

반응형