使用remove_query_arg() 从URL中删除查询字符串。
例如,要删除paged
当前页面URL中的查询字符串:
remove_query_arg(\'paged\', false); //FALSE, means to use the current URL
如果您有特定的URL:
remove_query_arg(\'paged\', \'http://domain.com/?cat=4&paged=2&order=DESC\');
或者,如果您有多个查询字符串,并且希望删除它们:
$paramaters = array(\'cat\', \'paged\', \'order\');
remove_query_arg($paramaters, false); //FALSE, means to use the current URL