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
232                          unset($error);
233
234                     if ( isset($perma_query_vars) && strpos($_SERVER['PHP_SELF'], 'wp-admin/') !== false )
235                          unset($perma_query_vars);
236
237                     $this->did_permalink = false;
238                }
239           }
240
241           $this->public_query_vars = apply_filters('query_vars', $this->public_query_vars);
242
243           foreach ( $GLOBALS['wp_post_types'] as $post_type => $t )
244                if ( $t->query_var )
245                     $post_type_query_vars[$t->query_var] = $post_type;
246
247           foreach ( $this->public_query_vars as $wpvar ) {
248                if ( isset( $this->extra_query_vars[$wpvar] ) )
249                     $this->query_vars[$wpvar] = $this->extra_query_vars[$wpvar];
250                elseif ( isset( $_POST[$wpvar] ) )