在 single-product/price.php 裡,想顯這示可變商品的最大值和最小值。
Get the min or max variation (active) price.
參考看看這個範例:
public function get_variation_price( $min_or_max = 'min', $include_taxes = false ) { $prices = $this->get_variation_prices( $include_taxes ); $price = 'min' === $min_or_max ? current( $prices['price'] ) : end( $prices['price'] ); return apply_filters( 'woocommerce_get_variation_price', $price, $this, $min_or_max, $include_taxes ); }
相關文章:
Class WC_Product_Variable
https://docs.woocommerce.com/wc-apidocs/class-WC_Product_Variable.html