wordpress怎麼判斷手機、平板還是PC並顯示對應的內容-Mobile Detect

來源:互聯網
上載者:User
wordpress如何判斷手機、平板還是PC並顯示對應的內容-Mobile Detect

wordpress如何判斷是手機、平板還是PC訪問,並針對性的顯示特定的內容?Mobile Detect 這個輕量級PHP 類庫能夠很好的實現這個功能。而且Mobile Detect也有wordpress下的外掛程式可用–WP Mobile Detect,wordpress使用這個外掛程式,很容易實現根據不同終端裝置顯示特定內容的功能,比如響應式wordpress主題。

安裝WP Mobile Detect外掛程式

登入wordpress管理後台,在外掛程式管理頁面選擇“安裝外掛程式”,然後再搜尋方塊裡輸入關鍵字“WP Mobile Detect”,然後再搜尋結果頁面李選擇“WP Mobile Detect”並安裝即可。

安裝WP Mobile Detect外掛程式

搜尋WP Mobile Detect外掛程式

WP Mobile Detect如何使用

在wordpress的文章編輯器裡用[關鍵字]進行標註,例如

Mobile Detect 如何使用

或者在php代碼裡用函數進行判斷

wpmd_is_notphone() – Returns true when on desktops or tablets
wpmd_is_nottab() – Returns true when on desktops or phones
wpmd_is_notdevice() – Returns true when on desktops only
wpmd_is_phone() – Returns true when on phones ONLY
wpmd_is_tablet() – Returns true when on Tablets ONLY
wpmd_is_device() – Returns true when on phones or tablets but NOT destkop
wpmd_is_ios() – Returns true when on an iOS device
wpmd_is_iphone() – Returns true when on iPhones
wpmd_is_ipad() – Returns true when on iPads
wpmd_is_android() – Returns true when on Android
wpmd_is_windows_mobile() – Returns true when on Windows Mobile

例如:

1

2

3

4

5

6

7

8

9

10

11

12

13

if(wpmd_is_phone()){ ?>

僅手機可見內容

else if(wpmd_is_tablet()){ ?>

僅平板電腦可見內容

else { ?>

僅PC可見內容

原創文章,轉載請註明: 轉載自 吳川斌的部落格 http://www.mr-wu.cn/

本文連結地址: wordpress如何判斷手機、平板還是PC並顯示對應的內容-Mobile Detect http://www.mr-wu.cn/mobile-detect-wordpress-plugin/

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.