ai_seo_enhancer_enabled

ai_seo_enhancer_enabled

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.14.5

apply_filters('ai_seo_enhancer_enabled') is found 2 times:

  • /_inc/lib/class.core-rest-api-endpoints.php line 3100
    3096
    3097
    3098
    3099
    3100
    3101
    3102
    3103
    3104
    3105
    3106
    );
     
    // 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 136
    133
    134
    135
    136
    137
    138
    139
    140
    141
                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' );
                }
            }
        }
    );