Loading... **用代码判断是否是微信端访问切换相关主题。** 将下面的代码保存为`weixin.php` 并上传到`wp-content/plugins`目录下 ``` <?php /* Plugin Name: Weixin Switch Theme Plugin URI: http://fatesinger.com/74958 Description: 切换微信主题 Version: 1.0.0 Author: Bigfa Author URI: http://fatesinger.com/ */ if( !function_exists('is_weixin') ) : function is_weixin(){ if ( strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger') !== false ) { return true; } return false; } endif; function angela_switch_theme($theme){ if( is_weixin() ){ $theme = 'Bur';//主题文件夹名而不是主题名 } return $theme; } add_filter( 'template', 'angela_switch_theme' ); add_filter( 'stylesheet', 'angela_switch_theme' ); ?> ``` **移动主题使用则使用下面的代码** ``` <?php /* Plugin Name: Mobile Switch Theme Plugin URI: http://fatesinger.com/74958 Description: 切换移动主题 Version: 1.0.0 Author: Bigfa Author URI: http://fatesinger.com/ */ function angela_switch_theme($theme){ if( wp_is_mobile() ){ $theme = 'Bur';//主题文件夹名而不是主题名 } return $theme; } add_filter( 'template', 'angela_switch_theme' ); add_filter( 'stylesheet', 'angela_switch_theme' ); ?> ``` 侵删转自:[大发贱志博客](https://fatesinger.com/) 最后修改:2024 年 10 月 07 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏