Skip to content

Instantly share code, notes, and snippets.

@sbuzonas
Created May 17, 2012 06:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sbuzonas/2716869 to your computer and use it in GitHub Desktop.
Save sbuzonas/2716869 to your computer and use it in GitHub Desktop.
Add lang variable to wordpress query var stack
function add_lang_var($existing_query_vars) {
$existing_query_vars[] = 'lang';
return $existing_query_vars;
}
add_filter('query_vars', 'add_lang_var');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment