WC_Discounts::get_discounted_price()publicWC 3.2.0

Get discounted price of an item without precision.

Method of the class: WC_Discounts{}

No Hooks.

Return

float.

Usage

$WC_Discounts = new WC_Discounts();
$WC_Discounts->get_discounted_price( $item );
$item(object) (required)
Get data for this item.

Changelog

Since 3.2.0 Introduced.

WC_Discounts::get_discounted_price() code WC 8.7.0

public function get_discounted_price( $item ) {
	return wc_remove_number_precision_deep( $this->get_discounted_price_in_cents( $item ) );
}