WC_Order_Item_Coupon::get_code()publicWC 1.0

Get coupon code.

Метод класса: WC_Order_Item_Coupon{}

Хуков нет.

Возвращает

Строку.

Использование

$WC_Order_Item_Coupon = new WC_Order_Item_Coupon();
$WC_Order_Item_Coupon->get_code( $context );
$context(строка)
What the value is for. Valid values are 'view' and 'edit'.
По умолчанию: 'view'

Код WC_Order_Item_Coupon::get_code() WC 8.7.0

public function get_code( $context = 'view' ) {
	return $this->get_prop( 'code', $context );
}