Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: query_vars

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
250            *
251            * Allows (publicly allowed) query vars to be added, removed, or changed prior
252            * to executing the query. Needed to allow custom rewrite rules using your own arguments
253            * to work, or any other custom query variables you want to be publicly available.
254            *
255            * @since 1.5.0
256            *
257            * @param array $public_query_vars The array of whitelisted query variables.
258            */
259           $this->public_query_vars = apply_filters( 'query_vars', $this->public_query_vars );
260
261           foreach ( get_post_types( array(), 'objects' ) as $post_type => $t )
262                if ( $t->query_var )
263                     $post_type_query_vars[$t->query_var] = $post_type;
264
265           foreach ( $this->public_query_vars as $wpvar ) {
266                if ( isset( $this->extra_query_vars[$wpvar] ) )
267                     $this->query_vars[$wpvar] = $this->extra_query_vars[$wpvar];
268                elseif ( isset( $_POST[$wpvar] ) )