WC_Product::get_stock_quantity()publicWC 1.0

Returns number of items available for sale.

Method of the class: WC_Product{}

No Hooks.

Return

Int|null.

Usage

$WC_Product = new WC_Product();
$WC_Product->get_stock_quantity( $context );
$context(string)
What the value is for. Valid values are view and edit.
Default: 'view'

WC_Product::get_stock_quantity() code WC 8.7.0

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