Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Only show products in the front-end search results
- add_filter('pre_get_posts','sg_search_filter_pages');
- function sg_search_filter_pages($query) {
- // Frontend Search only
- if ( ! is_admin() && $query->is_search() ) {
- $query->set('post_type', 'product');
- $query->set( 'wc_query', 'product_query' );
- }
- return $query;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement