如何从所有站点URL中删除查询参数?

时间:2021-03-21 作者:modex98

我使用url查询参数显示消息以太错误或信息消息

例如,我使用https://www.example.com?error=myerrormessagegoeshere

https://www.example.com?success=mysuccessmessagegoeshere

我会显示消息,但问题是当我刷新页面时,消息仍然会出现,因为查询仍然存在,所以我需要从URL中删除该查询,我知道在wordpress中

remove_query_arg( string|string[] $key, false|string $query = false )
但我不能做我想做的事

提前谢谢。

1 个回复
SO网友:modex98

我找到了这个我认为这是我使用的正确方法:

add_filter(\'removable_query_args\', function($args) {
    array_push($args, \'my_custom_arg\');
    return $args;
});