删除URL参数WordPress

时间:2017-01-23 作者:johan riyanto

我在WordPress中搜索有问题。我想删除URL中的“s”参数。这是我的URL:

www.example.com?post_type=tour&s=&tour_location=70&tour_types=116&tour_month=144&tour_year=66

我希望URL如下所示:

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

我需要如何修改代码?

1 个回复
SO网友:fergbrain

“s”变量参数用于搜索词,在WordPress网站上进行搜索时使用。

如果您有用户正在填写的表单,则应该有类似于以下代码:

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

删除该输入标记,“s”将消失。