wordpress主題開發過程中,有時會遇到需要把wordpress的頁面內容從搜索結果中移除的時候,除了使用插件以外,還可以使用非插件的方法,用一段代碼就可以實現:
add_filter('pre_get_posts','search_filter');
function search_filter($query) {
if ($query->is_search && !$query->is_admin) {
$query->set('post_type', 'post');
}
return $query;
}
將上面這段代碼添加的functions.php文件中即可實現。