WC_Product_Variation::get_stock_quantity()publicWC 1.0

Returns number of items available for sale.

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

Хуки из метода

Возвращает

int|null.

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

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

Код WC_Product_Variation::get_stock_quantity() WC 8.7.0

public function get_stock_quantity( $context = 'view' ) {
	$value = $this->get_prop( 'stock_quantity', $context );

	// Inherit value from parent.
	if ( 'view' === $context && 'parent' === $this->get_manage_stock() ) {
		$value = apply_filters( $this->get_hook_prefix() . 'stock_quantity', $this->parent_data['stock_quantity'], $this );
	}
	return $value;
}