Quantcast
Channel: Peter Zhou的博客 »程序
Viewing all articles
Browse latest Browse all 6

How to Exclude WordPress Pages From Search Results?

$
0
0

In short, just add this to your theme’s functions.php file (or create the file if it doesn’t exist):

<?php
function mySearchFilter($query) {
if ($query->is_search) {
$query->set(‘post_type’, ‘post’);
}
return $query;
}

add_filter(‘pre_get_posts’,'mySearchFilter’);
?>


Viewing all articles
Browse latest Browse all 6

Trending Articles