I did my WordPress website design with Elementor plugin and i included a menu in the side bar of every page, now i face a problem with search results because searching any word from the menu gives a huge number of results, it's normal because i have a menu in all pages.
I want to know how can i exclude this side menu from search result?
I did my WordPress website design with Elementor plugin and i included a menu in the side bar of every page, now i face a problem with search results because searching any word from the menu gives a huge number of results, it's normal because i have a menu in all pages.
I want to know how can i exclude this side menu from search result?
Share Improve this question asked Jun 3, 2019 at 14:18 sihamxxisihamxxi 351 silver badge6 bronze badges1 Answer
Reset to default 0Copy below code and paste in function.php file to exclude pages from search results.
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');
}
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745439977a4627785.html
评论列表(0条)