WC_Product::exists()
Returns whether or not the product post exists.
Метод класса: WC_Product{}
Хуков нет.
Возвращает
true|false
.
Использование
$WC_Product = new WC_Product(); $WC_Product->exists();
Код WC_Product::exists() WC Product::exists WC 9.2.3
public function exists() { return false !== $this->get_status(); }