当iphone或ipad检测到时,我怎么能激活wordpress主题

时间:2012-12-31 10:21:17

标签: wordpress wordpress-plugin

我想在检测到iPhone或iPad时激活/切换wordpress主题.. 我已经在Tablet (galaxy nexus)Apple iPod处理移动主题,但在iPhoneiPad失败,所以我需要切换主题。

我正在使用此代码。但是在发现iPhone / iPad之后不知道该怎么写

add_filter('browser_detect_function','browser_detect');
    function browser_detect(){
        //setting the variables
            $ipod = stripos($_SERVER['HTTP_USER_AGENT'],"iPod");
            $iphone = stripos($_SERVER['HTTP_USER_AGENT'],"iPhone");

            //detecting device
            if ($ipod == true || $iphone == true){
                //does'nt know what to write here. means which funciton         
            }   
    }

1 个答案:

答案 0 :(得分:1)

尝试WPTouch插件。它会自动检测用户设备。否则请检查此link是否有用。