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: |
|
| Defined at: |
|
| Codex: |
Returns whether AI features are supported in the current environment.
Related Functions: wp_http_supports, wp_cache_supports, iis7_supports_permalinks, post_type_supports, wp_kses_hair
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 );
}