wp_supports_ai()
Returns whether AI features are supported in the current environment.
Hooks from the function
Returns
true|false. Whether AI features are supported.
Usage
wp_supports_ai(): bool;
Changelog
| Since 7.0.0 | Introduced. |
wp_supports_ai() wp supports ai code WP 7.0
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 );
}