Last active
August 29, 2015 14:03
-
-
Save northernbellediaries/b3e25039d87e8c8bee5a to your computer and use it in GitHub Desktop.
shortcode to show elements in mobile only
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* Do NOT include the opening php tag | |
/** Add shortcode to show elements in mobile only */ | |
add_filter('widget_text', 'do_shortcode'); | |
function only_mobile_shortcode($atts, $content = '') { | |
if (wp_is_mobile() === false) { | |
$content = ''; | |
} | |
return $content; | |
} | |
add_shortcode('only_mobile', 'only_mobile_shortcode'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment