WordPress 微信专属移动主题Bur

angela

angela

主题配置

  • 主题文件夹名一定要为Angela,否则无法正常启用主题。
  • 安装微信主题切换插件,地址在文尾相关文章中
  • 虽然是微信主题但完全可以当作移动主题来用
  • 如需添加统计代码可编辑footer.php
  • 如需添加广告可编辑content-single.php
  • 菜单设置,暂不支持自定义菜单
  • 微信主题切换插件制作方法:

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

    1. <?php
    2. /*
    3. Plugin Name: Weixin Switch Theme
    4. Plugin URI: http://fatesinger.com/
    5. Description: 切换微信主题
    6. Version: 1.0.0
    7. Author: Bigfa
    8. Author URI: http://fatesinger.com/
    9. */
    10. function is_weixin(){
    11. if ( strpos($_SERVER[‘HTTP_USER_AGENT’], ‘MicroMessenger’) !== false ) {
    12. return true;
    13. }
    14. return false;
    15. }
    16. function angela_switch_theme($theme){
    17. if( is_weixin() ){
    18. $theme = ‘Angela’;
    19. }
    20. return $theme;
    21. }
    22. add_filter( ‘template’, ‘angela_switch_theme’ );
    23. add_filter( ‘stylesheet’, ‘angela_switch_theme’ );
    24. ?>
    1. <?php
    2. /*
    3. Plugin Name: Mobile Switch Theme
    4. Plugin URI: http://fatesinger.com/
    5. Description: 切换移动主题
    6. Version: 1.0.0
    7. Author: Bigfa
    8. Author URI: http://fatesinger.com/
    9. */
    10. function angela_switch_theme($theme){
    11. if( wp_is_mobile() ){
    12. $theme = ‘Angela’;
    13. }
    14. return $theme;
    15. }
    16. add_filter( ‘template’, ‘angela_switch_theme’ );
    17. add_filter( ‘stylesheet’, ‘angela_switch_theme’ );
    18. ?>

    官网下载: https://github.com/bigfa/Bur


    发布日期:

    所属分类: Wordpress, WordPress 主题 标签:    


    没有相关文章!