Force Custom Template Selection
Copy this code and paste it in your HTML
/******* FORCE CUSTOM TEMPLATE SELECTION *********/
function my_template_redirect()
{
if ($wp->query_vars["taxonomy"] == "clinic")
{
include(TEMPLATEPATH . "/taxonomy-clinic.php");
}
}
add_action("template_redirect", 'my_template_redirect');
Report this snippet