WP::remove_query_var( string $name )
Removes a query variable from a list of public query variables.
Parameters
- $name
-
(Required) Query variable name.
Source
File: wp-includes/class-wp.php
public function remove_query_var( $name ) {
$this->public_query_vars = array_diff( $this->public_query_vars, array( $name ) );
}
Changelog
Version | Description |
---|---|
WP-4.5.0 | Introduced. |