Skip to content

Instantly share code, notes, and snippets.

@WhiteHatJoker
Created October 18, 2021 22:45
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 WhiteHatJoker/6bd03896639b17bc8fcb77e070618228 to your computer and use it in GitHub Desktop.
Save WhiteHatJoker/6bd03896639b17bc8fcb77e070618228 to your computer and use it in GitHub Desktop.
Snippet to make search forms to search only for products

search_only_by_products

Snippet to make search forms to search only for products

Installation

Simply copy the repository code to your functions.php to make your sitewide search results show products.

/**
*Search only by products
*/
function searchfilter($query) {
if ($query->is_search && !is_admin() ) {
$query->set('post_type',array('product'));
}
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment