WC_Product_Variable_Data_Store_CPT::child_is_in_stock()publicWC 3.0.0

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 8.7.0

public function child_is_in_stock( $product ) {
	return $this->child_has_stock_status( $product, 'instock' );
}