Skip to content

Instantly share code, notes, and snippets.

@tanshio
Created July 18, 2014 17:28
Show Gist options
  • Save tanshio/0adb1cf84ac76d56cda7 to your computer and use it in GitHub Desktop.
Save tanshio/0adb1cf84ac76d56cda7 to your computer and use it in GitHub Desktop.
my_theme_switcher
// 特定の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