WC_Order_Item_Coupon::get_discount
Get discount amount.
Метод класса: WC_Order_Item_Coupon{}
Хуков нет.
Возвращает
Строку.
Использование
$WC_Order_Item_Coupon = new WC_Order_Item_Coupon(); $WC_Order_Item_Coupon->get_discount( $context );
- $context(строка)
- What the value is for. Valid values are
'view'and'edit'.
По умолчанию:'view'
Код WC_Order_Item_Coupon::get_discount() WC Order Item Coupon::get discount WC 10.7.0
public function get_discount( $context = 'view' ) {
return $this->get_prop( 'discount', $context );
}