WC_Abstract_Legacy_Product::set_stock
Deprecated since 3.0.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Set stock level of the product.
Method of the class: WC_Abstract_Legacy_Product{}
No Hooks.
Returns
Int.
Usage
$WC_Abstract_Legacy_Product = new WC_Abstract_Legacy_Product(); $WC_Abstract_Legacy_Product->set_stock( $amount, $mode );
- $amount(int)
- .
Default:null - $mode(string)
- .
Default:'set'
Changelog
| Deprecated since | 3.0.0 |
WC_Abstract_Legacy_Product::set_stock() WC Abstract Legacy Product::set stock code WC 10.8.1
public function set_stock( $amount = null, $mode = 'set' ) {
wc_deprecated_function( 'WC_Product::set_stock', '3.0', 'wc_update_product_stock' );
return wc_update_product_stock( $this, $amount, $mode );
}