One section of my website is going to be completely different visually than the rest of the pages, is there a way to apply a WP Theme to specific page templates ?
Leave a Reply
You must be logged in to post a comment.
One section of my website is going to be completely different visually than the rest of the pages, is there a way to apply a WP Theme to specific page templates ?
You must be logged in to post a comment.
In fact there is, using
template_redirect
, which you would put in the functions.php file – Here’s what I use:The above code checks for a
post_type
calledposttype
, if it is, it will include the PHP file specified in the include statement by redirecting the template using thetemplate_redirect
function.