We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e7be1b commit 691d62dCopy full SHA for 691d62d
1 file changed
src/wp-includes/ai-client.php
@@ -23,14 +23,14 @@ function wp_supports_ai(): bool {
23
}
24
25
/**
26
- * Filters whether the current request should use AI.
+ * Filters whether the current request can use AI.
27
*
28
* This allows plugins and 3rd-party code to disable AI features on a per-request basis, or to even override explicit
29
* preferences defined by the site owner.
30
31
* @since 7.0.0
32
33
- * @param bool $is_enabled Whether the current request should use AI. Default to true.
+ * @param bool $is_enabled Whether AI is available. Default to true.
34
*/
35
return (bool) apply_filters( 'wp_supports_ai', true );
36
0 commit comments