Skip to content

Instantly share code, notes, and snippets.

@otakupahp
Last active March 26, 2025 15:34
Show Gist options
  • Select an option

  • Save otakupahp/48f3b5d76f1283b99226b071ae378b36 to your computer and use it in GitHub Desktop.

Select an option

Save otakupahp/48f3b5d76f1283b99226b071ae378b36 to your computer and use it in GitHub Desktop.
Run Jetpack Instant Search locally
-- Replace table name as needed
SELECT * FROM `wp_options` WHERE `option_name` LIKE '%jetpack_search%' ORDER BY option_name ASC;
<?php
// If we are on localhost, force Jetpack online
if ( defined( 'WP_LOCAL_DEV' ) && WP_LOCAL_DEV ) {
add_filter( 'jetpack_offline_mode', '__return_false' );
}
@verytwisty
Copy link

Currently this only works locally for me if I add define( 'JETPACK_DEV_DEBUG', false ); to the wp-config file, incase anyone else is having trouble!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment