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

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

Wordpress利用短代码实现移动设备上内容不可见 – WordPress 教程
WordPress

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

function not_mobile_shortcode($atts, $content = '') {    if (wp_is_mobile() === true) {        $content = '';    }    return $content;}add_shortcode('not_mobile', 'not_mobile_shortcode');

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

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

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

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: