Wordpress Template Redirection – WordPress April 11, 2011 Pramod T P Leave a comment add_action('template_redirect','theme_function'); function theme_function(){ if(isset($_GET['sports']) { include(TEMPLATEPATH."/sports.php"); exit(); }}