Warning: This method has been deprecated.
WC_Abstract_Legacy_Product::increase_stock( int $amount = 1 )
Increase stock level of the product.
Description Description
Parameters Parameters
- $amount
-
(Optional) Amount to increase by.
Default value: 1
Return Return
(int) new stock level
Source Source
File: includes/legacy/abstract-wc-legacy-product.php
public function increase_stock( $amount = 1 ) { wc_deprecated_function( 'WC_Product::increase_stock', '3.0', 'wc_update_product_stock' ); return wc_update_product_stock( $this, $amount, 'increase' ); }
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |