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