R
R
Rebldomakr2018-03-08 17:18:42
WordPress
Rebldomakr, 2018-03-08 17:18:42

How to disable page search in WordPress?

Is there any way to turn off page search?
I want the search to work exclusively for posts
5aa145eec4d59422719865.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Z
zorca, 2018-03-08
@Rebldomakr

Add filter to functions.php:

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');
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question