使用wordpress检测移动设备

时间:2013-02-06 04:18:30

标签: wordpress wordpress-plugin

我是wordpress插件开发的新手,但是我开发了两个短代码,即[MY_SHORTCODE][MY_SHORTCODE_MOBILE],两者都工作正常,但现在我想在其中进行一次增强,即我想写一个新的短代码detect the device,如果检测到的设备是移动的,而不是我想调用短代码[MY_SHORTCODE_MOBILE],否则我想调用[MY_SHORTCODE]。我怎样才能做到这一点 ?请帮帮我们。

2 个答案:

答案 0 :(得分:1)

您可以通过插件Mobile Detector

来完成

或者如果您想创建自己的,可以先使用移动检测库(PHP)

mobile-detect

答案 1 :(得分:0)

我知道你想在浏览器或移动设备上运行短代码。

下载mobile detect代码的php文件,并在代码下面放置代码

    <?php
    $useragent=$_SERVER['HTTP_USER_AGENT'];
    if(preg_match('/copy paste mobile detect code here from detectmobilebrowser.php',substr($useragent,0,4)))
    {
    //header('Location: http://detectmobilebrowser.com/mobile');
    // that code run for mobile device
    echo do_shortcode("[MY_SHORTCODE_MOBILE]");
    }
    else{
    // that code run for browser
    echo do_shortcode("[MY_SHORTCODE]");
    }
    ?>