WC_Product::exists()publicWC 1.0

Returns whether or not the product post exists.

Method of the class: WC_Product{}

No Hooks.

Return

true|false.

Usage

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

WC_Product::exists() code WC 8.7.0

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