WC_Product::is_in_stockpublicWC 1.0

Returns whether or not the product can be purchased. This returns true for 'instock' and 'onbackorder' stock statuses.

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

Хуки из метода

Возвращает

true|false.

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

$WC_Product = new WC_Product();
$WC_Product->is_in_stock();

Код WC_Product::is_in_stock() WC 9.9.4

public function is_in_stock() {
	/**
	 * Filters whether a product is in stock.
	 *
	 * @since 2.7.0
	 * @param bool          $in_stock Whether the product is in stock.
	 * @param WC_Product    $product  Product object.
	 */
	return apply_filters( 'woocommerce_product_is_in_stock', ProductStockStatus::OUT_OF_STOCK !== $this->get_stock_status(), $this );
}