
如何用最简洁的代码在手机上使用不同的主题?
程序圆在轩风阁找到了答案,分享给大家。首先,必须使用插件来切换主题,并且不能将代码添加到当前电脑启用的主题文件中。
所以你只需要在/wp-content/plugins/如change中新建一个文件夹然后将下面的代码保存为php文件并放到新文件夹change中即可
<?php /*Plugin Name: mobile_switch_theme*/ function mobile_switch_theme($theme){ if( wp_is_mobile() ){ $theme = 'Wpmip'; //theme 为主题名 } return $theme; } add_filter('template', 'mobile_switch_theme'); add_filter('stylesheet', 'mobile_switch_theme'); ?>
其中 Wpmip 为主题文件夹名。