如何实现移动设备上WordPress文章内容不可见?

最近有些用户咨询如何实现移动设备上WordPress文章内容不可见?为大家分享一段代码即可实现发布的内容在移动…


Warning: Attempt to read property "post_type" on null in /www/wwwroot/wper.net/wp-content/plugins/wper-meta.php on line 317

最近有些用户咨询如何实现移动设备上WordPress文章内容不可见?为大家分享一段代码即可实现发布的内容在移动设备不可见。
如何实现移动设备上WordPress文章内容不可见? (https://www.wpmee.com/) WordPress开发教程 第1张
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]

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

类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册