WC_Product::get_stock_quantity( string $context = 'view' )
Returns number of items available for sale.
Description Description
Parameters Parameters
- $context
-
(Optional) What the value is for. Valid values are view and edit.
Default value: 'view'
Return Return
(int|null)
Source Source
File: includes/abstracts/abstract-wc-product.php
public function get_stock_quantity( $context = 'view' ) { return $this->get_prop( 'stock_quantity', $context ); }