Slide 35
Slide 35 text
Load a Completely
Different Theme!
https://gist.github.com/3454745
class UnpluggedMobile{
var $unplugged;
function UnpluggedMobile(){
$this->unplugged = false;
add_action('plugins_loaded',array(&$this,'detectunplugged'));
add_filter('stylesheet',array(&$this,'get_stylesheet'));
add_filter('template',array(&$this,'get_template'));
}
function detectunplugged($query){
if(preg_match('/(alcatel|amoi|android|avantgo|blackberry|benq|cell|cricket|docomo|elaine|htc|iemobile|iphone|ipad|ipaq|ipod|j2me|
java|midp|mini|mmp|mobi|motorola|nec-|nokia|palm|panasonic|philips|phone|sagem|sharp|sie-|smartphone|sony|symbian|t-mobile|telus|up
\.browser|up\.link|vodafone|wap|webos|wireless|xda|xoom|zte)/i', $_SERVER['HTTP_USER_AGENT'])) {
$this->unplugged = true;
}
}
function get_stylesheet($stylesheet) {
if($this->unplugged){
return 'unplugged-mobile-theme';
}else{
return $stylesheet;
}
}
function get_template($template) {
if($this->unplugged){
return 'unplugged-mobile-theme';
}else{
return $template;
}
}
}
$wp_unplugged = new UnpluggedMobile();