WordPress 微信访问切换主题插件

WordPress 微信访问切换主题插件

作者 : 资源客 发布时间: 2019-12-15

将下面的代码保存为 weixin.php 并上传到 wp-content/plugins 目录下

<?php
/*
Plugin Name: Weixin Switch Theme
Plugin URI: http://www.qq301.com
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' );
?>

之后在插件后台激活即可。
激活后在微信中将自动启用 Bur 主题
如果当作移动主题使用则使用下面的代码

<?php
/*
Plugin Name: Mobile Switch Theme
Plugin URI: http://www.qq301.com
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' );
?>

 

http://xzh.i3geek.com
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,请不要用于商业用途及非法用途,否则后果自负!
3. 如果你也有好源码或者教程,可以到审核区发布,分享有金币奖励和额外收入!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 如遇到加密压缩包,默认解压密码为"qq301.com",如遇到无法解压的请联系管理员!
资源客是一个优秀的分享资源站,本站资源均为各位友友分享而来,特殊原创会标明如有侵犯版权等可联系删除

资源客 » WordPress 微信访问切换主题插件