WordPress小技巧:只搜索特定类型的文章

下面的代码能够让你的Wordpress内置的搜索引擎至搜索特定的类型,类型代码在第四行,可以自行修改,把它贴到你的主题的functions.php文件中即可。

1
2
3
4
5
6
7
8
9
10
function SearchFilter($query) {
  if ($query->is_search) {
    // 下面的这段代码决定了搜索的内容类型
    $query->set('post_type', 'feeds');
  }
  return $query;
}
 
// This filter will jump into the loop and arrange our results before they're returned
add_filter('pre_get_posts','SearchFilter');
posted @ 2012-12-20 17:03  leeker  阅读(562)  评论(0编辑  收藏  举报