Skip to content

Instantly share code, notes, and snippets.

@janisdonis
Created July 13, 2013 07:11
Show Gist options
  • Save janisdonis/5989750 to your computer and use it in GitHub Desktop.
Save janisdonis/5989750 to your computer and use it in GitHub Desktop.
Wordpress custom post type single template
// Template selection
function my_template_redirect()
{
global $wp;
if ($wp->query_vars["post_type"] == "produkti")
{
include(TEMPLATEPATH . "/products-open.php");
die();
}
}
add_action("template_redirect", 'my_template_redirect');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment