ACF\AI

AI::is_geo_enabledpublicACF 6.8.0

Checks if GEO functionality is enabled.

Method of the class: AI{}

No Hooks.

Returns

boolean.

Usage

$AI = new AI();
$AI->is_geo_enabled(): bool;

Changelog

Since 6.8.0 Introduced.

AI::is_geo_enabled() code ACF 6.8.8

public function is_geo_enabled(): bool {
	return (bool) acf_get_setting( 'enable_schema' );
}