Skip to content

Instantly share code, notes, and snippets.

@bmsterling
Created September 9, 2012 00:21
Show Gist options
  • Save bmsterling/3681506 to your computer and use it in GitHub Desktop.
Save bmsterling/3681506 to your computer and use it in GitHub Desktop.
Wordpress: Add vars so that you can use get_query_var
add_filter('query_vars', 'add_queryvars' );
function add_queryvars( $qvars ){
$qvars[] = '_m';
return $qvars;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment