wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_supports_ai › WordPress Function

Since7.0.0
Deprecatedn/a
wp_supports_ai ( No parameters )
Returns:
  • (bool) Whether AI features are supported.
Defined at:
Codex:

Returns whether AI features are supported in the current environment.



Source

function wp_supports_ai(): bool {
	// Return early if AI is disabled by the current environment.
	if ( defined( 'WP_AI_SUPPORT' ) && ! WP_AI_SUPPORT ) {
		return false;
	}

	/**
	 * Filters whether the current request can use AI.
	 *
	 * This allows plugins and 3rd-party code to disable AI features on a per-request basis, or to even override explicit
	 * preferences defined by the site owner.
	 *
	 * @since 7.0.0
	 *
	 * @param bool $is_enabled Whether AI is available. Default to true.
	 */
	return (bool) apply_filters( 'wp_supports_ai', true );
}