Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 26, 2021 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchristopher/432e01356cc20ffb34dd6d831942bd8d to your computer and use it in GitHub Desktop.
Save jchristopher/432e01356cc20ffb34dd6d831942bd8d to your computer and use it in GitHub Desktop.
searchwp\auto_update_providers hook example
<?php
// Tell SearchWP to automatically update its providers when switching sites.
// @link https://searchwp.com/documentation/hooks/searchwp-auto_update_providers/
add_filter( 'searchwp\auto_update_providers', '__return_true' );
// Retrieve results from this site.
$searchwp_site_1 = new \SWP_Query( [
's' => 'coffee',
] );
// Retrieve results from site 2.
switch_to_blog( 2 );
$searchwp_site_2 = new \SWP_Query( [
's' => 'coffee',
] );
// Restore the original site.
restore_current_blog();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment