Automattic\WooCommerce\Internal\ComingSoon

ComingSoonHelper::is_site_livepublicWC 1.0

Returns true when the entire site is live.

Method of the class: ComingSoonHelper{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ComingSoonHelper = new ComingSoonHelper();
$ComingSoonHelper->is_site_live(): bool;

ComingSoonHelper::is_site_live() code WC 10.8.1

public function is_site_live(): bool {
	return 'yes' !== get_option( 'woocommerce_coming_soon' );
}