Skip to content

Instantly share code, notes, and snippets.

@joecue
Forked from kierzniak/functions.php
Created January 18, 2018 13:57
Show Gist options
  • Save joecue/5c1b78fd5f0925447bacfdb213916090 to your computer and use it in GitHub Desktop.
Save joecue/5c1b78fd5f0925447bacfdb213916090 to your computer and use it in GitHub Desktop.
Search across all network blogs in elasticpress
<?php
/**
* Search across all network blogs with elasticpress
*
* @param $scope string Search scope
*
* @return string
*/
function motivast_ep_search_scope( $scope ) {
return 'all';
}
add_filter( 'ep_search_scope', 'motivast_ep_search_scope' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment