我想在检测到iPhone或iPad时激活/切换wordpress主题..
我已经在Tablet (galaxy nexus)
,Apple 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
}
}