Remove Url Parameter Wordpress

I have problem with search in WordPress. I want to remove the "s" parameter in the URL. This is my URL:

www.example.com?post_type=tours=tour_location=70tour_types=116tour_month=144tour_year=66

I want the URL to look like:

www.example.com?post_type=tourtour_location=70tour_types=116tour_month=144tour_year=66

How do I need to modify my code?

Topic codex plugins Wordpress search

Category Web


The "s" variable parameter is for the search term and is used when there's a search on a WordPress site.

If you have a form that users are filling out, there should be code similar to:

<input type="text" value="<?php the_search_query(); ?>" name="s" id="s" />

Delete that input tag and the "s" will disappear.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.