Skip to content

Instantly share code, notes, and snippets.

@pehaa
Last active March 3, 2023 13:39
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 pehaa/77949f47a2a95ea263a2a495a9c7543a to your computer and use it in GitHub Desktop.
Save pehaa/77949f47a2a95ea263a2a495a9c7543a to your computer and use it in GitHub Desktop.
jetpack_instant_search_options
add_filter( 'jetpack_instant_search_options', function($options) {
$lang = pll_current_language();
$options['adminQueryFilter'] = array(
'bool' => array(
'must' => array(
array( 'term' => array( 'taxonomy.language.slug' => $lang ) ),
)
)
);
return $options;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment