WordPress教學 – 取得WooCommerce 可變商品單價最高金額

Posted in :

在 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

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *