mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
Query: Add a WP::remove_query_var() helper function.
This makes cleaning up public query vars easier. Fixes #35234. git-svn-id: https://develop.svn.wordpress.org/trunk@36177 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -95,6 +95,17 @@ class WP {
|
||||
$this->public_query_vars[] = $qv;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove name from list of public query variables.
|
||||
*
|
||||
* @since 4.5.0
|
||||
*
|
||||
* @param string $name Query variable name.
|
||||
*/
|
||||
public function remove_query_var( $name ) {
|
||||
$this->public_query_vars = array_diff( $this->public_query_vars, array( $name ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the value of a query variable.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user