利用下面的短代码,可以实现发布的内容在移动设备不可见。
- 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]
这样当用移动浏览器查看时被隐藏的内容将不可见。
亲爱的:若该文章解决了您的问题,可否收藏+评论+分享呢?
文章评论 本文章有个评论