利用短代码实现移动设备上内容不可见

利用下面的短代码,可以实现发布的内容在移动设备不可见。

  1.  not_mobile_shortcode(,  = ) {
  2.      (wp_is_mobile() === true) {
  3.          = ;
  4.     }
  5.      ;
  6. }
  7. add_shortcode(\’not_mobile\’, \’not_mobile_shortcode\’);

将代码添加到主题functions.php中,发表文章时,插入短代码:

[not_mobile]隐藏的内容[/not_mobile]

这样当用移动浏览器查看时被隐藏的内容将不可见。

    © 版权声明
    THE END
    喜欢就支持一下吧
    点赞0 分享
    评论 抢沙发

    请登录后发表评论

      暂无评论内容