How to switch the theme for one page only in Wordpress

Is there a way that we can change a specific theme for a particular page only in Wordpress?

I tried a simple theme switcher, but the problem is that it constantly changes the subject.

I do not want it...

+4
source share
3 answers

I did not do this myself, but I know that you can use the advanced settings of the Headspace 2 plugin to switch themes for specific pages.

Headspace 2: http://wordpress.org/extend/plugins/headspace2/

Here is a video tutorial that explains this (a little small and grainy, but you get the idea).

http://www.wpqueen.com/wordpress-how-to/how-to-have-different-themes-on-different-pages/

0
source

I am not 100% sure exactly what you want to achieve, but if it has only another display for one page (instead, really change ALL the theme to include all functions, etc.), then -

You must create a page template and then select it from the drop-down menu for your page.

(in the sidebar - Attributes Page โ†’ Template)

In this case, you can also use certain functions by adding them to the page itself (before exiting.)

For instance:

<?php /* Template Name: my-page-name */ function my_specific_page_function() { //..do_whatever } ?> 
+4
source

This plugin exists, but it has not been updated for more than a year

http://wordpress.org/plugins/page-theme/

0
source

All Articles