【发布时间】:2016-10-10 07:43:13
【问题描述】:
我在 Woocommerce 源代码中有这个过滤器:
$this->total = max( 0, apply_filters( 'woocommerce_calculated_total', round( $this->cart_contents_total + $this->tax_total + $this->shipping_tax_total + $this->shipping_total + $this->fee_total, $this->dp ), $this ) );
我想通过我的过滤器应用此更改,但我不明白如何。
$this->total = max( 0, apply_filters( 'woocommerce_calculated_total', floor(( $this->cart_contents_total + $this->tax_total + $this->shipping_tax_total + $this->shipping_total + $this->fee_total) * 100)/100, $this ) );
任何帮助将不胜感激。问候!
【问题讨论】:
标签: wordpress filter woocommerce rounding floor