微信专属WordPress移动主题Angela

微信专属WordPress移动主题Angela

为这款主题特开设新分类——WordPress 移动主题。鱼哥的插件微信机器人早就让国内的WPer们尝到了微信营销的甜头。既然插件有了、文章有了,剩下的是不是:一款称心如意的、用户体验极佳的WordPress 移动主题呢?作者来自发哥,感谢分享。

主题使用说明

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

[php]
<?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]

 

主题截图

Angela – 微信专属WordPress移动主题Angela – 微信专属WordPress移动主题

点击下载

Comments

No comments yet. Why don’t you start the discussion?

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注