-
-
Save wokamoto/4679580 to your computer and use it in GitHub Desktop.
Revisions
-
wokamoto revised this gist
Jan 31, 2013 . 1 changed file with 19 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,13 +8,25 @@ function my_theme_switcher($theme){ // yes, it's hardcoded! switch (preg_replace('#^/([^/]+)/?.*$#', '$1', $_SERVER['REQUEST_URI'])) { case 'about': $overrideTheme = 'twentyten'; break; case 'news': $overrideTheme = 'twentyeleven'; break; case 'blog': $overrideTheme = 'twentytwelve'; break; default: $overrideTheme = false; } if ( $overrideTheme ) { $overrideTheme = wp_get_theme($overrideTheme); return $overrideTheme->exists() ? $overrideTheme['Template'] : $theme; } return $theme; } -
hissy created this gist
Jan 16, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ <?php /* Plugin Name: Hardcode theme switcher Plugin URI: http://ja.forums.wordpress.org/topic/13483 Author: Takuro Hishikawa Version: 0.1 */ function my_theme_switcher($theme){ // yes, it's hardcoded! if ( $_SERVER['REQUEST_URI'] == '/about/' ) { $overrideTheme = wp_get_theme('twentyten'); if ( $overrideTheme->exists() ) { return $overrideTheme['Template']; } else { return $theme; } } return $theme; } add_filter('stylesheet', 'my_theme_switcher', 50); add_filter('template', 'my_theme_switcher', 50);