Skip to content

Instantly share code, notes, and snippets.

@magnificode
Last active December 24, 2015 00:19
Show Gist options
  • Save magnificode/6715988 to your computer and use it in GitHub Desktop.
Save magnificode/6715988 to your computer and use it in GitHub Desktop.
Fixes a Wordpress empty search query.
if(!is_admin()){
add_action('init', 'search_query_fix');
function search_query_fix(){
if(isset($_GET['s']) && $_GET['s']==''){
$_GET['s']=' ';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment