Created
July 18, 2014 17:28
-
-
Save tanshio/0adb1cf84ac76d56cda7 to your computer and use it in GitHub Desktop.
my_theme_switcher
This file contains 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 characters
// 特定のURL、固定ページのみ「theme」を切り替える | |
// http://ja.forums.wordpress.org/topic/13483 | |
function my_theme_switcher($theme){ | |
// yes, it's hardcoded! | |
if ( $_SERVER['REQUEST_URI'] == 'HOMEからのパス' ) { // /lp/2014/ | |
$overrideTheme = wp_get_theme('テーマ名'); | |
if ( $overrideTheme->exists() ) { | |
return $overrideTheme['テーマ名']; | |
} else { | |
return $theme; | |
} | |
} | |
return $theme; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment