Advertisement
sierre

Only show PRODUCTS in the front-end search results

Sep 22nd, 2024
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. // Only show products in the front-end search results
  2. add_filter('pre_get_posts','sg_search_filter_pages');
  3. function sg_search_filter_pages($query) {
  4.     // Frontend Search only
  5.     if ( ! is_admin() && $query->is_search() ) {
  6.         $query->set('post_type', 'product');
  7.         $query->set( 'wc_query', 'product_query' );
  8.     }
  9.     return $query;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement