| @@ 35-50 (lines=16) @@ | ||
| 32 | * | |
| 33 | * @since 5.0.0 | |
| 34 | */ | |
| 35 | 	public function init_hooks() { | |
| 36 | 		if ( ! is_admin() ) { | |
| 37 | add_filter( 'posts_pre_query', array( $this, 'filter__posts_pre_query' ), 10, 2 ); | |
| 38 | add_action( 'parse_query', array( $this, 'action__parse_query' ), 10, 1 ); | |
| 39 | ||
| 40 | add_action( 'init', array( $this, 'set_filters_from_widgets' ) ); | |
| 41 | ||
| 42 | add_action( 'wp_enqueue_scripts', array( $this, 'load_assets' ) ); | |
| 43 | add_action( 'wp_footer', array( $this, 'print_instant_search_sidebar' ) ); | |
| 44 | 		} else { | |
| 45 | add_action( 'update_option', array( $this, 'track_widget_updates' ), 10, 3 ); | |
| 46 | } | |
| 47 | ||
| 48 | add_action( 'widgets_init', array( $this, 'register_jetpack_instant_sidebar' ) ); | |
| 49 | add_action( 'jetpack_deactivate_module_search', array( $this, 'move_search_widgets_to_inactive' ) ); | |
| 50 | } | |
| 51 | ||
| 52 | /** | |
| 53 | * Loads assets for Jetpack Instant Search Prototype featuring Search As You Type experience. | |
| @@ 212-229 (lines=18) @@ | ||
| 209 | * | |
| 210 | * @since 5.0.0 | |
| 211 | */ | |
| 212 | 	public function init_hooks() { | |
| 213 | 		if ( ! is_admin() ) { | |
| 214 | add_filter( 'posts_pre_query', array( $this, 'filter__posts_pre_query' ), 10, 2 ); | |
| 215 | ||
| 216 | add_filter( 'jetpack_search_es_wp_query_args', array( $this, 'filter__add_date_filter_to_query' ), 10, 2 ); | |
| 217 | ||
| 218 | add_action( 'did_jetpack_search_query', array( $this, 'store_last_query_info' ) ); | |
| 219 | add_action( 'failed_jetpack_search_query', array( $this, 'store_query_failure' ) ); | |
| 220 | ||
| 221 | add_action( 'init', array( $this, 'set_filters_from_widgets' ) ); | |
| 222 | ||
| 223 | add_action( 'pre_get_posts', array( $this, 'maybe_add_post_type_as_var' ) ); | |
| 224 | 		} else { | |
| 225 | add_action( 'update_option', array( $this, 'track_widget_updates' ), 10, 3 ); | |
| 226 | } | |
| 227 | ||
| 228 | add_action( 'jetpack_deactivate_module_search', array( $this, 'move_search_widgets_to_inactive' ) ); | |
| 229 | } | |
| 230 | ||
| 231 | /** | |
| 232 | * Is search supported on the current plan | |