How to make shortcode to hide selection of text from post or page?
Simple answer: add_shortcode( ‘hidemytext’, ‘__return_false’ ); But shortcodes should never be used like that. Imagine what happens when the plugin or theme with that shortcode is turned off: everyone can see the content now. This is not very user friendly. So switch the logic: show nothing or the bare shortcode tag by default, show the … Read more