Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created February 8, 2022 13:59
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/5ed26c65f20f209177f6b2b9afd39d85 to your computer and use it in GitHub Desktop.
Save searchwpgists/5ed26c65f20f209177f6b2b9afd39d85 to your computer and use it in GitHub Desktop.
Limit SearchWP results to Category that has 'foobar' slug
<?php
// Limit SearchWP results to Category that has 'foobar' slug.
$search = new \SWP_Query( [
's' => 'coffee', // Search string.
'tax_query' => [ [
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'foobar',
] ],
] );
// Print all results.
print_r( $search->posts );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment