You’ve got an extra “;” after if ( !is_mobile( ) );
Your code should look like this:
add_shortcode( 'is_mobile', 'is_mobile_shortcode' );
function is_mobile_shortcode( $atts, $content = null) {
if ( !is_mobile( ) )
return $content;
return '';
}
And you’ll use it in this way (just for to be sure you’re using it right:
[is_mobile]My Caption[/is_mobidle]
Related Posts:
- conditional shortcode not working
- conditional shortcode not working
- Conditionally loading Facebook PHP SDK in shortcode
- Check if post has gallery images/media
- How To Conditionally Include A Short Code Depending On The HTTP_REFERER [closed]
- Check if CTP category taxonomy is set in shortcode
- hard code shortcode only on specific category
- how to have the gallery shortcode output one single UL list instead of several DL?
- WordPress transients for a shortcode
- Get post id shortcode
- How to handle valueless attributes in shortcodes?
- How execute shortcode with javascript
- How to render complicated shortcodes
- My shortcode is not working in Contact Form 7 Message Body
- How to make this shortcode work for post content
- Get Shortcode Attributes
- How I make a shortcode for this code?
- Problem with email_exists in shortcode
- Shortcode doesn’t work with classes
- Get shortcode from the content and display it in other place (in sidebar, for example)
- Alternate text if shortcode returns no data
- Global, network-wide shortcodes or text replace functions
- Adding shortcode to the main menu
- Inserting PHP inside do_shortcode
- How to use div class between the shortcode variable?
- Error do_shortcode In WooCommerce Template
- Executing a shortcode from a “normal” text/hyperlink
- Execute shortcode only once in the page
- Two different inner shortcode under shortcodes or multiple nesting of inner shortcodes
- Extra paragraph tags in an enclosing shortcode
- Order Woocommerce Products by Latest Reviewed
- $content not null in shortcode, even though it is self closing
- Nesting shortcodes results in the inner shortcode being placed AFTER outer shortcode
- Create a shortcode that creates a form for users to edit their information
- How to split text text text into array
- i have create shortcode that work but not perfect coding
- WordPress Vue Js Shortcodes
- Shortcode multiple values
- How do you stop a shortcode from firing in the editor?
- menu item to display the most recent post
- how to format / execute post content and shortcode?
- Documentation for adding a tinyMCE view for visual live preview of custom shortcode?
- How can I implement shortcode on click event
- Login form from shortcode doesn’t redirect after successful login
- do_shortcode via ajax
- How to list users by custom field?
- Form Shortcode not saving data to WP database
- Single post content custom order
- Adding a class to shortcode API
- Pass data back to TinyMCE from Thickbox
- Forcing WP to embedd a video when using a shortcode
- Shortcode for output of wp_get_archives displays at top of post
- How can I execute shortcode outside the loop?
- Gutenberg Shortcode Fail
- How to add “get_theme_mod” inside a shortcode?
- How to create shortcode to display perticular word from page title
- Shortcode is not returned correctly
- Echo HTML in custom shortcode
- How do I make a shortcode?
- Echoing Shortcode content inside the loop
- Short code inside the page not working in WordPress
- How can I list only custom shortcodes?
- Substite Category Slug in a Shortcode
- Add inline style to pages where shortcode was used
- add new attributes into existing shortcodes
- Anchor text in Short code →
- Theme Icons not visible on http://domain.com, works on http://ipaddress
- Add variable in between do_shortcode
- How to pass an array as attribute of shortcode to work properly shortcode parser?
- How to show an image via shortcode
- Using shortcodes in the Site Title
- Use atributes of shortcode in get template part
- How to use multiple (or array) values in $content of shortcode?
- Is there any way to set the Featured image in wordpress post editor, using a Getty images embed code
- How to style inline code in block editor?
- Is it possible to capture the content outside/between shortcodes?
- Help with a function to create a shortcode
- How to use strip_shortcodes() from a spawned process?
- How to completely prevent WordPress from destroying/modifying my shortcode outputs?
- Term Description Echo or Return – display problems
- Same Shortcode not executing second time
- Check if Page=current user page via shortcode
- Is it inefficient to repeat a Shortcode 100 times on a page?
- tinymce custom button
- Running Filter or Shortcode Before Query Prevents Excerpt from Showing
- WordPress Payment link will not transform PHP vars into values
- Referring to site URL in shortcode argument
- Does a String Replacing script affect shortcode output?
- Shortcode for showing childpages
- How to create shortcode for auto login after registration
- How WordPress Displaying Shortcode In Post Content?
- Shortcode not accepting atts
- the_time function inside HTML dom parser
- Code auto escaping is not working when using short codes
- How to attach sidebar to shortcode’s output?
- Is it possible to change a shortcode parameter based on a media query?
- Shortcode append to the the_content()
- Wrapping a function in html tag and return?
- Why does my shortcode query not working with search term
- How to use multiple values in “Shortcode”? [closed]