Created
June 8, 2020 20:13
-
-
Save guytzhak/b44acd84526be5c295dc564d6d8068ed to your computer and use it in GitHub Desktop.
Display only products on wordpress search results page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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