WooCommerce에서 사용자 정의 제품 유형에 대한 가격 및 재고 활성화 방법 WooCommerce 응용 프로그램에서 사용자 지정 제품 유형을 만들었습니다. function register_variable_bulk_product_type() { class WC_Product_Variable_bulk extends WC_Product_Simple { public function __construct($product) { $this->product_type = 'variable_bulk'; parent::__construct($product); } } } add_action('init', 'register_variable_bulk_product_type'); function add_variable_bul..