ai_seo_enhancer_enabled
ai_seo_enhancer_enabled
Appears in: jetpack.14.5
Hook Type: filter
Displaying hooks found in version: jetpack.14.5apply_filters('ai_seo_enhancer_enabled') is found 2 times:
- /_inc/lib/class.core-rest-api-endpoints.php line 310030963097309830993100310131023103310431053106
);
// SEO Tools - SEO Enhancer. Only available to Automatticians.
// TODO: either remove this or make it available to all users by moving it to the main options array.
if
( apply_filters(
'ai_seo_enhancer_enabled'
, false ) || apply_filters(
'ai_seo_enhancer_enabled_unrestricted'
, false ) ) {
$options
[
'ai_seo_enhancer_enabled'
] =
array
(
'description'
=> esc_html__(
'Automatically generate SEO title, SEO description, and image alt text for new posts.'
,
'jetpack'
),
'type'
=>
'boolean'
,
'default'
=> 0,
'validate_callback'
=>
__CLASS__
.
'::validate_boolean'
,
'jp_group'
=>
'seo-tools'
,
- /extensions/blocks/ai-assistant/ai-assistant.php line 136133134135136137138139140141
if
( apply_filters(
'ai_seo_enhancer_enabled_unrestricted'
, false ) ) {
Jetpack_Gutenberg::set_extension_available(
'ai-seo-enhancer-enabled-unrestricted'
);
Jetpack_Gutenberg::set_extension_available(
'ai-seo-enhancer'
);
}
elseif
( apply_filters(
'ai_seo_enhancer_enabled'
, false ) ) {
Jetpack_Gutenberg::set_availability_for_plan(
'ai-seo-enhancer'
);
}
}
}
);