Answer the question
In order to leave comments, you need to log in
How to exclude pages from WordPress search without breaking the admin panel?
Good!
I'm using the "Posts" type for the main content, and I want to exclude "Pages" from the search.
There is a great code for this:
// Удаляем с поиска страницы
function searchExcludePages($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','searchExcludePages');
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question