当检测到iphone或ipad时,如何激活wordpress主题

当检测到iphone或ipad时,如何激活wordpress主题,wordpress,Wordpress,我想在检测到iPhone或iPad时激活/切换wordpress主题。。 我已经有了移动主题,它正在开发平板电脑(galaxy nexus),苹果iPod,但在iPhone和iPad中失败,所以我需要切换主题 我正在使用这个代码。但是不知道在检测到iPhone/iPad之后写什么 add_filter('browser_detect_function','browser_detect'); function browser_detect(){ //setting the

我想在检测到iPhone或iPad时激活/切换wordpress主题。。 我已经有了移动主题,它正在开发
平板电脑(galaxy nexus)
苹果iPod
,但在
iPhone
iPad
中失败,所以我需要切换主题

我正在使用这个代码。但是不知道在检测到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         
            }   
    }

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

或者,我可以推荐您使用plugin.thanx作为您的类ans.sir。但是我想使用php代码。欢迎。你试过@media CSS吗fuction@Arunu:B我已经有了手机主题,它正在平板电脑(galaxy nexus)、苹果iPod上工作,但在iPhone和iPad上失败了,所以我需要切换主题。你能给我另一个css解决方案吗?检查这个链接是否对thanx bhai有用,但这对我的解决方案不好。。我用您在评论“检查此链接是否有用1stwebdesigner.com/css/quick-wordpress-theme-switcher-plugin”中提供的链接解决了问题