Skip to content

Instantly share code, notes, and snippets.

@guytzhak
Created June 8, 2020 20:13
Show Gist options
  • Save guytzhak/b44acd84526be5c295dc564d6d8068ed to your computer and use it in GitHub Desktop.
Save guytzhak/b44acd84526be5c295dc564d6d8068ed to your computer and use it in GitHub Desktop.
Display only products on wordpress search results page
add_filter( 'pre_get_posts','mz_search_posts_per_page' );
// Alter search posts per page
function mz_search_posts_per_page($query) {
if ( $query->is_search ) {
$query->set( 'posts_per_page', '-1' );
$query->set( 'post_type', 'product' );
}
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment