激活的主题存储在options
表格:template
是父主题,stylesheet
是子主题。如果没有子主题,则两个值将相同。
当前主机名(URL无协议或路径)在$_SERVER
变量
然后,您可以钩住stylesheet
和template
筛选以强制使用不同的主题。
function use_mobile_theme( $current_theme ) {
// If the domain is m.qqq.com and the current theme is \'qqq\'
if ( \'m.qqq.com\' === $_SERVER[\'HTTP_HOST\'] && \'qqq\' === $current_theme ) {
// Use the \'qqq-mobile\' theme instead
return \'qqq-mobile\';
} else {
// Otherwise, keep the current theme
return $current_theme;
}
}
add_filter( \'stylesheet\', \'use_mobile_theme\' );
add_filter( \'template\', \'use_mobile_theme\' );
如果
qqq-mobile
is a child theme, 删除
add_filter( \'template\', ...
线