2022年11月3日23:18:43
WordPress 怎么利用短代码实现移动设备上内容不可见?利用下面的短代码,可以实现发布的内容在移动设备不可见。
1、WordPress 怎么利用短代码实现移动设备上内容不可见?
function not_mobile_shortcode($atts, $content = '') { if (wp_is_mobile() === true) { $content = ''; } return $content;} add_shortcode('not_mobile', 'not_mobile_shortcode');
2、将代码添加到主题functions.php中,发表文章时,插入短代码:
[not_mobile]隐藏的内容[/not_mobile]
3、这样当用移动浏览器查看时被隐藏的内容将不可见。
- 由 主机教程网 首发于 https://xyy1.com/
- 转载请保留本文链接:https://2bcd.com/4351.html