WP::add_query_var( string $qv )

In this article

Adds a query variable to the list of public query variables.

Parameters

$qvstringrequired
Query variable name.

Source

public function add_query_var( $qv ) {
	if ( ! in_array( $qv, $this->public_query_vars, true ) ) {
		$this->public_query_vars[] = $qv;
	}
}

Changelog

VersionDescription
2.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.