WC_Product::get_stock_quantity
Returns number of items available for sale.
Method of the class: WC_Product{}
No Hooks.
Returns
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() WC Product::get stock quantity code WC 10.5.0
public function get_stock_quantity( $context = 'view' ) {
return $this->get_prop( 'stock_quantity', $context );
}