Archived topic
How can I make search results only show posts not pages?
2 replies · Started by RJ on July 15, 2020
Viewing posts 1–3 of 3
Hey there - Is it possible to make the default WP search results only show posts not pages?
TIA
In case anyone else needs this...
I just did a quick google search and found this PHP code which seems to have worked:
//Exclude pages from WordPress Search
if (!is_admin()) {
function wpb_search_filter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','wpb_search_filter');
}
Source: https://www.wpbeginner.com/wp-tutorials/how-to-exclude-pages-from-wordpress-search-results/
Glad to see you found the answer - and thanks for sharing.
This archived topic is closed to new replies.