当前位置:K88软件开发文章中心编程语言PHPPHP01 → 文章内容

WordPress 微信主题 Angela

减小字体 增大字体 作者:佚名  来源:网上搜集  发布时间:2019-1-4 8:22:54

-->

Angela 是专门为微信定制的移动主题。配合我是水煮鱼的微信机器人效果非常不错。也适合在朋友圈做推广的朋友。配合微信插件使用不会影响PC端和移动端的使用,只有在微信中打开才会启用本主题。另外本主题也适合作为移动端主题使用,配合主题切换插件使用即可~

主题配置

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

微信主题切换插件制作方法:

将下面的代码保存为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’ );
?>

之后在插件后台激活即可。激活后在微信中将自动启用Angela主题,如果当作移动主题使用则使用下面的代码:

<?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’ );
?>

主题下载地址:点此下载

该文章由WP-AutoPost插件自动采集发布

原文地址:http://www.59iwp.com/428.html


WordPress 微信主题 Angela