Using this simple shortcode you can hide any part of post content on mobile devices.
function not_mobile_shortcode($atts, $content = '') {
if (wp_is_mobile() === true) {
$content = '';
}
return $content;
}
add_shortcode('not_mobile', 'not_mobile_shortcode');
Just add this to your theme functions.php.
Using this is as simple as: [not_mobile]Some content here[/not_mobile]. “Some content here” won’t just be hidden – it will not be sent to the browser on mobile devices.
Leave a Reply