WC_Order_Item_Coupon::get_code
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 Order Item Coupon::get code WC 10.7.0
public function get_code( $context = 'view' ) {
return $this->get_prop( 'code', $context );
}