WC_Discounts::get_discounted_price_in_cents()
Get discounted price of an item to precision (in cents).
Method of the class: WC_Discounts{}
No Hooks.
Return
Int
.
Usage
$WC_Discounts = new WC_Discounts(); $WC_Discounts->get_discounted_price_in_cents( $item );
- $item(object) (required)
- Get data for this item.
Changelog
Since 3.2.0 | Introduced. |
WC_Discounts::get_discounted_price_in_cents() WC Discounts::get discounted price in cents code WC 9.7.1
public function get_discounted_price_in_cents( $item ) { return absint( NumberUtil::round( $item->price - $this->get_discount( $item->key, true ) ) ); }