Created
March 26, 2021 16:26
-
-
Save jchristopher/432e01356cc20ffb34dd6d831942bd8d to your computer and use it in GitHub Desktop.
searchwp\auto_update_providers hook example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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