Bur 的前身是Angela,可作为移动主题或微信主题来使用,配合微信插件使用不会影响PC端和移动端的使用,只有在微信中打开才会启用本主题。如作为移动端主题使用,只需配合主题切换插件使用即可,
主题配置
微信主题切换插件制作方法:
将下面的代码保存为weixin.PHP 并上传到plugins目录下
/*
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’ );
?>
之后在插件后台激活即可。激活后在微信中将自动启用Angela主题,如果当作移动主题使用则使用下面的代码:
/*
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’ );
?>
官网下载: https://github.com/bigfa/Bur
原文链接:https://www.f2er.com/wordpress/422903.html