Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created July 28, 2023 12:55
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 searchwpgists/49f9ad9862357615b959042ddc7a25d1 to your computer and use it in GitHub Desktop.
Save searchwpgists/49f9ad9862357615b959042ddc7a25d1 to your computer and use it in GitHub Desktop.
Limit the search pool to Uncategorized Posts in SearchWP
<?php
// Limit the search pool to Uncategorized Posts in SearchWP.
add_filter( 'searchwp\post__in', function( $ids, $args ) {
return array_unique( array_merge( $ids, get_posts( [
'fields' => 'ids',
'nopaging' => true,
'post_type' => 'post',
'tax_query' => [ [
'taxonomy' => 'category',
'field' => 'name',
'terms' => 'Uncategorized',
] ]
] ) ) );
}, 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment