纯代码WordPress 微信主题设置插件Weixin Switch Theme
摘要:WordPress微信主题设置插件,主要功能是在WordPress网站正常使用情况下不干涉PC端及移动端…
摘要:WordPress微信主题设置插件,主要功能是在WordPress网站正常使用情况下不干涉PC端及移动端的主题使用。
WordPress微信主题设置插件,主要功能是在WordPress网站正常使用情况下不干涉PC端及移动端的主题使用。
只有在微信中打开页面是才会自动判断并启用某特定的主题显示。
将下面的代码保存为weixin.php文件名 并上传到wp-content/plugins目录下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?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 = ‘wa’;//主题文件夹名而不是主题名
}
return $theme;
}
add_filter( ‘template’, ‘angela_switch_theme’ );
add_filter( ‘stylesheet’, ‘angela_switch_theme’ );
?>
|
完成后,在插件中激活Weixin Switch Theme插件即可,
注:名称中的$theme属性设置为主题文件夹名称并非主题名称。
类别:WordPress教程、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!