有一个奇怪问题,就是搜索框里没输入任何条件,搜索页面却也会显示搜索结果。
究其原因,如果输入框的值为空时,Wordpress默认为全站搜索,那么给赋值为全站搜索。所以你搜索空白时也会出现结果。
如何解决wordpress 搜索框里空白无条件搜索仍出结果问题呢?
我们可以控制搜索框空白时,自动跳转到网站首页上。
方法很简单,只需要在自己的wordpress模板函数functions.php里加上以下的代码即可。
//~ 搜索关键词为空
add_filter(‘request’, ‘wp_theme_redirect_blank_search’);
function wp_theme_redirect_blank_search($query_variables) {
if (isset($_GET[‘s’]) && !is_admin()) {
if (empty($_GET[‘s’]) || ctype_space($_GET[‘s’])) {
wp_redirect(home_url()); exit;
}
} return $query_variables;
}