0

我想在检测到 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         
            }   
    }
4

1 回答 1

1

试试WPTouch插件。它会自动检测用户的设备。否则检查这个链接是否有帮助。

于 2012-12-31T10:46:51.273 回答