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