wordpress移动或微信个人博客模板Bur,这又是大发站长免费分享的wordpress主题,适合单独作为手机或微信主题,还是蛮不错的,大家可以安装体验下。
wordpress个人博客模板Bur目前更新到2.0版本。
大发站长也提供微信或手机主题切换代码。
将下面的代码保存为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 = 'Bur';//主题文件夹名而不是主题名 } return $theme; } add_filter( 'template', 'angela_switch_theme' ); add_filter( 'stylesheet', 'angela_switch_theme' ); ?> |
之后在插件后台激活即可,激活后在微信中将自动启用Bur 主题。
如果当作移动主题使用则使用下面的代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<?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' ); ?> |
wordpress个人博客模板Bur首页预览PC端
wordpress个人博客模板Bur文章页预览
PC端首页图片不太合适,文章页还是很不错的,Bur模板适合移动端,更多模板介绍或下载可以点击Bur。也可以点击大发查看分享的其他个人博客模板。