Using Multiple Themes in a Single WordPress Site?

To slightly sidestep your actual question, the template hierarchy allows you to have a custom handler for any post ID, category, taxonomy term, etc. That may be the quickest way to solve your problem: just create a template file that stands on its own and only serves request to one post (or category, or however the sales letter(s) are identified).

You don’t have to call get_header(), get_footer() or any of the other template functions, so you’re free to have a completely different page structure for a single post on your site.

Leave a Comment