I don't want to display pages in search results

Posted in: Newsmag
Post count: 43

I don’t want display pages in search results, http://www.screencast.com/t/D93tE7HUH0n

Thanks!

Post count: 9544

You can set this option in the Yoast WordPress SEO plugin; where it allows you to not have your pages found in your sitemap for Google; and also set the meta data to “noindex”

Post count: 43

I’m not talking about the Google search result, i’m talking about the search results of my site http://www.screencast.com/t/D93tE7HUH0n

Post count: 9544

Well… that’s a WordPress issue, not a theme issue.

So you might do a Google search for how to customize WP searches, or maybe there is a plugin to not show pages in search results.

http://www.wpbeginner.com/wp-tutorials/how-to-exclude-pages-from-wordpress-search-results/

Post count: 6600

Hi,

Add this function to your theme functions file: http://screencast.com/t/XB2LpOjyfR6

function SearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');

Thanks

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newsmag’ is closed to new topics and replies.