Return to Snippet

Revision: 30381
at August 13, 2010 01:39 by jamiebrwr


Initial Code
/******* FORCE CUSTOM TEMPLATE SELECTION *********/

function my_template_redirect()
{
global $wp;
if ($wp->query_vars["taxonomy"] == "clinic")
{
include(TEMPLATEPATH . "/taxonomy-clinic.php");
die();
}
}
add_action("template_redirect", 'my_template_redirect');

Initial URL


Initial Description
Place into fucntions.php

Initial Title
Force Custom Template Selection

Initial Tags
wordpress

Initial Language
PHP