WC_Discounts::get_discounted_price_in_cents()publicWC 3.2.0

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() code WC 8.7.0

public function get_discounted_price_in_cents( $item ) {
	return absint( NumberUtil::round( $item->price - $this->get_discount( $item->key, true ) ) );
}