Skip to content

Instantly share code, notes, and snippets.

@joshuadavidnelson
Created December 5, 2014 14:57
Show Gist options
  • Save joshuadavidnelson/e242e01191a8567f80e1 to your computer and use it in GitHub Desktop.
Save joshuadavidnelson/e242e01191a8567f80e1 to your computer and use it in GitHub Desktop.
Add custom query variable
<?php
/**
* Add to your theme functions file
*/
// Add query variable
add_filter( 'query_vars', 'jdn_add_query_vars' );
function jdn_add_query_vars( $vars ){
$vars[] = "yr";
return $vars;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment