Codex tools: Log in
Allows query vars to be added, removed, or changed changed prior to executing the query.
function themeslug_query_vars( $qvars ) {
array_push( $qvars, 'custom_query_var' );
return $qvars;
}
add_filter( 'query_vars', 'themeslug_query_vars' , 10, 1 );