Automattic\WooCommerce\Internal\ComingSoon

ComingSoonHelper::is_site_live()publicWC 1.0

Returns true when the entire site is live.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

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

Код ComingSoonHelper::is_site_live() WC 9.7.1

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