/ Published in: PHP
Place into fucntions.php
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/******* FORCE CUSTOM TEMPLATE SELECTION *********/ function my_template_redirect() { global $wp; if ($wp->query_vars["taxonomy"] == "clinic") { include(TEMPLATEPATH . "/taxonomy-clinic.php"); } } add_action("template_redirect", 'my_template_redirect');