Created
September 4, 2013 00:19
-
-
Save matgargano/6431310 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter('query_vars', function($vars){ | |
$vars[] = 'featured'; | |
return $vars; | |
}); | |
add_action('init', function(){ | |
add_rewrite_rule('sponsors/test/?$', 'index.php?post_type=sponsors&featured=true', 'top'); | |
}); | |
add_action('wp_head', function(){ | |
echo "featured is ... "; | |
echo get_query_var('featured') ? get_query_var('featured') : ' NOT SET!'; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment