文章目录[隐藏]
主题配置
微信主题切换插件制作方法:
将下面的代码保存为weixin.php 并上传到plugins目录下
<?php
/*
Plugin Name: Weixin Switch Theme
Plugin URI: http://fatesinger.com/
Description: 切换微信主题
Version: 1.0.0
Author: Bigfa
Author URI: http://fatesinger.com/
*/
function is_weixin(){
if ( strpos($_SERVER[‘HTTP_USER_AGENT’], ‘MicroMessenger’) !== false ) {
return true;
}
return false;
}
function angela_switch_theme($theme){
if( is_weixin() ){
$theme = ‘Angela’;
}
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/
Description: 切换移动主题
Version: 1.0.0
Author: Bigfa
Author URI: http://fatesinger.com/
*/
function angela_switch_theme($theme){
if( wp_is_mobile() ){
$theme = ‘Angela’;
}
return $theme;
}
add_filter( ‘template’, ‘angela_switch_theme’ );
add_filter( ‘stylesheet’, ‘angela_switch_theme’ );
?>
官网下载: https://github.com/bigfa/Bur