remove_query_arg( string|array $key, bool|string $query = false )

Removes an item or items from a query string.


Parameters

$key

(string|array) (Required) Query key or keys to remove.

$query

(bool|string) (Optional) When false uses the current URL.

Default value: false


Return

(string) New URL query string.


Source

File: wp-includes/functions.php

function remove_query_arg( $key, $query = false ) {
	if ( is_array( $key ) ) { // removing multiple keys
		foreach ( $key as $k )
			$query = add_query_arg( $k, false, $query );
		return $query;
	}
	return add_query_arg( $key, false, $query );
}


Changelog

Changelog
Version Description
WP-1.5.0 Introduced.