WC_Product::exists()publicWC 1.0

Returns whether or not the product post exists.

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

Хуков нет.

Возвращает

true|false.

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

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

Код WC_Product::exists() WC 8.7.0

public function exists() {
	return false !== $this->get_status();
}