欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

wordpress怎么判断手机、平板还是PC并显示对应的内容-Mobile Detect

程序员文章站 2022-05-26 16:50:58
...
wordpress如何判断手机、平板还是PC并显示对应的内容-Mobile Detect

wordpress如何判断是手机、平板还是PC访问,并针对性的显示特定的内容?Mobile Detect 这个轻量级PHP 类库能够很好的实现这个功能。而且Mobile Detect也有wordpress下的插件可用–WP Mobile Detect,wordpress使用这个插件,很容易实现根据不同终端设备显示特定内容的功能,比如响应式wordpress主题。

wordpress怎么判断手机、平板还是PC并显示对应的内容-Mobile Detect

安装WP Mobile Detect插件

登录wordpress管理后台,在插件管理页面选择“安装插件”,然后再搜索框里输入关键字“WP Mobile Detect”,然后再搜索结果页面李选择“WP Mobile Detect”并安装即可。

wordpress怎么判断手机、平板还是PC并显示对应的内容-Mobile Detect

安装WP Mobile Detect插件

wordpress怎么判断手机、平板还是PC并显示对应的内容-Mobile Detect

搜索WP Mobile Detect插件

WP Mobile Detect如何使用

在wordpress的文章编辑器里用[关键字]进行标注,例如

wordpress怎么判断手机、平板还是PC并显示对应的内容-Mobile Detect

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/

wordpress怎么判断手机、平板还是PC并显示对应的内容-Mobile Detect

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • wordpress怎么判断手机、平板还是PC并显示对应的内容-Mobile Detect
  • 专题推荐

    作者信息
    wordpress怎么判断手机、平板还是PC并显示对应的内容-Mobile Detect

    认证0级讲师

    推荐视频教程
  • wordpress怎么判断手机、平板还是PC并显示对应的内容-Mobile Detectjavascript初级视频教程
  • wordpress怎么判断手机、平板还是PC并显示对应的内容-Mobile Detectjquery 基础视频教程
  • 视频教程分类