You appear to be a bot. Output may be restricted
Description
Initializes sync for Instant Search.
Usage
Actions::initialize_search();
Parameters
Returns
void
Source
File name: jetpack/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php
Lines:
1 to 9 of 9
public static function initialize_search() { if ( false === class_exists( 'Automattic\\Jetpack\\Search\\Module_Control' ) ) { return; } $search_module = new \Automattic\Jetpack\Search\Module_Control(); if ( $search_module->is_instant_search_enabled() ) { add_filter( 'jetpack_sync_modules', array( __CLASS__, 'add_search_sync_module' ) ); } }