You appear to be a bot. Output may be restricted
Description
Perform nested shortcode expansion
Usage
$string = bw_do_shortcode( $content );
Parameters
- $content
- ( string ) required – the content to be expanded
Returns
string the content after shortcode expansionTO DO
Performance question – is there any point testing for a '[' in the string? i.e. How expensive is do_shortcode() ?Source
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 6 of 6
function bw_do_shortcode( $content ) { bw_push(); $content = do_shortcode( $content ); bw_pop(); return( $content ); }View on GitHub View on Trac