Load template for specific subdomain

Without more detail about the kind of template you’d be serving up, the best I can advise is that you can use the ‘template_redirect’ hook to override the entire Template Hierarchy.

A more delicate way to do this would be by using on of the more specific filters. Each of the conditional get_*_template() functions in template-loader.php has a filter of its own which you can use to return your own template name. Look in includes/themes.php to see those filters.

Most of them end up using get_query_template(), which dynamically creates the filter name in a consistant way, but some of the others like author and category are separate – look around to find which if any suits you best under different circumstances.

Leave a Comment