Skip to content

Instantly share code, notes, and snippets.

@northernbellediaries
Last active August 29, 2015 14:03
Show Gist options
  • Save northernbellediaries/b3e25039d87e8c8bee5a to your computer and use it in GitHub Desktop.
Save northernbellediaries/b3e25039d87e8c8bee5a to your computer and use it in GitHub Desktop.
shortcode to show elements in mobile only
<?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