You appear to be a bot. Output may be restricted
Description
Wrap the result of the shortcode in notext/dotext
Usage
$string = notext_wrappit( $return );
Parameters
- $return
- ( string ) required – expanded shortcode
Returns
string the expanded shortcode wrapped in notext/dotext HTML commentsSource
File name: oik-css/includes/shortcodes-earlier.phpLines:
1 to 6 of 6
function notext_wrappit( $return ) { $wrapped = "<!--notext:-->"; $wrapped .= $return; $wrapped .= "<!--dotext:-->"; return( $wrapped ); }View on GitHub View on Trac