WooCommerce 3의 후크를 통해 상품 가격 변경
WooCommerce 플랫폼은 상품 가격을 수정할 수 있는 다양한 후크를 제공합니다. add_filter('woocommerce_get_regular_price')와 add_filter('woocommerce_get_price')를 사용해 제시된 솔루션은 단순 상품에는 효과가 있지만, 변형 상품의 경우에는 한계가 있습니다.
변형 상품 가격
변형 상품 가격 조정을 위해 다음과 같이 업데이트된 후크가 있습니다. 권장 사항:
단순, 그룹화 및 외부 제품:
변형:
변수 제품 범위:
플러그인 구현
플러그인 내에서 이러한 후크를 구현하려면 다음을 고려하세요.
add_filter('woocommerce_product_get_price', 'custom_price', 99, 2); add_filter('woocommerce_product_get_regular_price', 'custom_price', 99, 2); add_filter('woocommerce_product_variation_get_regular_price', 'custom_price', 99, 2); add_filter('woocommerce_product_variation_get_price', 'custom_price', 99, 2); add_filter('woocommerce_variation_prices_price', 'custom_variable_price', 99, 3); add_filter('woocommerce_variation_prices_regular_price', 'custom_variable_price', 99, 3); function custom_price($price, $product) { $multiplier = 2; // Adjust as needed return (float) $price * $multiplier; } function custom_variable_price($price, $variation, $product) { $multiplier = 2; // Adjust as needed return (float) $price * $multiplier; }
테마 구현
테마를 선호하는 경우 기반 접근 방식을 사용하려면 function.php에 다음 코드를 포함하세요. 파일:
add_filter('woocommerce_product_get_price', 'custom_price', 99, 2); add_filter('woocommerce_product_get_regular_price', 'custom_price', 99, 2); add_filter('woocommerce_product_variation_get_regular_price', 'custom_price', 99, 2); add_filter('woocommerce_product_variation_get_price', 'custom_price', 99, 2); add_filter('woocommerce_variation_prices_price', 'custom_variable_price', 99, 3); add_filter('woocommerce_variation_prices_regular_price', 'custom_variable_price', 99, 3); function custom_price($price, $product) { $multiplier = 2; // Adjust as needed return (float) $price * $multiplier; } function custom_variable_price($price, $variation, $product) { $multiplier = 2; // Adjust as needed return (float) $price * $multiplier; }
추가 참고 사항 및 개선 사항
위 내용은 WooCommerce 3에서 프로그래밍 방식으로 제품 가격을 어떻게 변경할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!