WC_Abstract_Legacy_Order::reduce_order_stock() public WC 1.0
Deprecated from version 3.0.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.╳
Reduce stock levels for all line items in the order.
{} It's a method of the class: WC_Abstract_Legacy_Order{}
No Hooks.
Return
Null. Nothing.
Usage
$WC_Abstract_Legacy_Order = new WC_Abstract_Legacy_Order(); $WC_Abstract_Legacy_Order->reduce_order_stock();
Changelog
Deprecated | 3.0.0 |
Code of WC_Abstract_Legacy_Order::reduce_order_stock() WC Abstract Legacy Order::reduce order stock WC 5.0.0
public function reduce_order_stock() {
wc_deprecated_function( 'WC_Order::reduce_order_stock', '3.0', 'wc_reduce_stock_levels' );
wc_reduce_stock_levels( $this->get_id() );
}