Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created January 24, 2014 15:30
Show Gist options
  • Save theukedge/8599513 to your computer and use it in GitHub Desktop.
Save theukedge/8599513 to your computer and use it in GitHub Desktop.
<?php // allow query var to be retrieved
function add_query_vars_filter( $vars ){
$vars[] = "signup";
return $vars;
}
add_filter( 'query_vars', 'add_query_vars_filter' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment