WC_Product_Variable_Data_Store_CPT::child_is_in_stock()
Is a child in stock?
Метод класса: WC_Product_Variable_Data_Store_CPT{}
Хуков нет.
Возвращает
true|false
.
Использование
$WC_Product_Variable_Data_Store_CPT = new WC_Product_Variable_Data_Store_CPT(); $WC_Product_Variable_Data_Store_CPT->child_is_in_stock( $product );
- $product(WC_Product) (обязательный)
- Product object.
Список изменений
С версии 3.0.0 | Введена. |
Код WC_Product_Variable_Data_Store_CPT::child_is_in_stock() WC Product Variable Data Store CPT::child is in stock WC 9.8.1
public function child_is_in_stock( $product ) { return $this->child_has_stock_status( $product, ProductStockStatus::IN_STOCK ); }