今天帮客户做搜索页面时,发现搜索结果为空时仍然返回结果。
可以在主题函数function.php加入下面代码:
//~ 搜索关键词为空
add_filter( 'request', 'uctheme_redirect_blank_search' );
function uctheme_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;
}搜索为空时返回首页,或者指定其他页面,就可以解决搜索结果为空还返回结果


湘公网安备 43021102000177号