jetpack_search_ai_answers_enabled
jetpack_search_ai_answers_enabled
Appears in: jetpack.15.9
Hook Type: filter
Displaying hooks found in version: jetpack.15.9apply_filters('jetpack_search_ai_answers_enabled') is found 1 times:
- /jetpack_vendor/automattic/jetpack-sync/src/modules/class-search.php line 1826
* @param array $list Existing post types whitelist. * @return array Updated whitelist. */ public function add_ai_answer_post_types( $list ) { if ( ! apply_filters( 'jetpack_search_ai_answers_enabled', (bool) get_option( 'jetpack_search_ai_answers_enabled', false ) ) ) { return $list; } $list[] = 'wp_guideline'; return $list; }