我不太了解PHP ......我知道这不是一个好的开始。
我正在使用http://detectmobilebrowsers.mobi/用于移动/桌面网站,而我正在使用wordpress作为我的CMS。
我已经设置了我的功能......
require_once('mobile_device_detect.php');
mobile_device_detect(true,true,true,true,true,true,false,false,false);
但现在在我的主题中,我想要一个类似于此的条件语句......
<?php if (is_home()) { ?>
//Some bits here
<?php } else { ?>
//Some bits here
<?php } ?>
虽然我希望它从我的函数中返回值。请参阅下面的垃圾尝试......
<?php if (mobile_device_detect==true) { ?>
//Some bits here
<?php } else { ?>
//Some bits here
<?php } ?>
显然这不会起作用大声笑,但你能看到我想要实现的目标吗?和帮助将是最棒的谢谢!
干杯 约什
答案 0 :(得分:1)
几乎就在那里。
require_once('php/mobile_device_detect.php');
$mobile = mobile_device_detect(true,true,true,true,true,true,false,false,false);
然后检查
if ($mobile==true) // then do the rest of your stuff