반응형
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
반응형
'programing' 카테고리의 다른 글
WordPress 사용자 지정 게시물 유형이 검색 결과에 표시되지 않음 (0) | 2023.10.01 |
---|---|
Get-Content - 문서에 설명된 대로 작동하지 않을 때까지 기다립니다. (0) | 2023.10.01 |
단순입력함 기능 (0) | 2023.10.01 |
열에서 공통 값을 기준으로 큰 데이터 프레임을 데이터 프레임 목록으로 나눕니다. (0) | 2023.10.01 |
jQuery에서 여러 ID 처리 (0) | 2023.10.01 |