WC_Order_Data_Store_CPT::get_order_stock_reduced()publicWC 1.0

Stores information about whether stock was reduced.

Метод класса: WC_Order_Data_Store_CPT{}

Хуков нет.

Возвращает

true|false.

Использование

$WC_Order_Data_Store_CPT = new WC_Order_Data_Store_CPT();
$WC_Order_Data_Store_CPT->get_order_stock_reduced( $order );
$order(WC_Order|int) (обязательный)
Order ID or order object.

Код WC_Order_Data_Store_CPT::get_order_stock_reduced() WC 8.7.0

public function get_order_stock_reduced( $order ) {
	return $this->get_stock_reduced( $order );
}