Shortcode to make content invisible on mobile devices

移动

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

 

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]
| 软慧 版权所有丨如未注明,均为原创
| 转载请注明:https://www.ruanhuicn.com/news/sircle-center-right-sidebar-demo.html
订阅评论
提醒
0 评论
内联反馈
查看所有评论
0
希望看到您的想法,请您发表评论x