Automattic\WooCommerce\Internal\ComingSoon

ComingSoonAdminBarBadge::is_badge_enabledprivateWC 1.0

Check if the site visibility badge is enabled.

Method of the class: ComingSoonAdminBarBadge{}

No Hooks.

Returns

bool.

Usage

// private - for code of main (parent) class only
$result = $this->is_badge_enabled(): bool;

ComingSoonAdminBarBadge::is_badge_enabled() code WC 11.0.1

private function is_badge_enabled(): bool {
	return 'yes' === get_option( 'woocommerce_feature_site_visibility_badge_enabled', 'yes' );
}