Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/18a5289ae8c5aee95921842364adb6cb to your computer and use it in GitHub Desktop.
Save propertyhive/18a5289ae8c5aee95921842364adb6cb to your computer and use it in GitHub Desktop.
add_action('parse_query', 'set_default_location_search_criteria');
function set_default_location_search_criteria()
{
if ( !is_admin() && !isset($_GET['location']) )
{
$_GET['location'] = X; // Change X accordingly
$_REQUEST['location'] = X; // Change X accordingly
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment