You appear to be a bot. Output may be restricted
Description
Implement [bw_autop] shortcode
Usage
$string = bw_autop( $atts, $content, $tag );
Parameters
- $atts
- ( array ) optional – shortcode parameters
- $content
- ( string ) optional – not expected
- $tag
- ( string ) optional – not expected
Returns
string filtered HTMLSource
File name: oik-css/shortcodes/oik-autop.phpLines:
1 to 7 of 7
function bw_autop( $atts=null, $content=null, $tag=null ) { $autop = bw_array_get_from( $atts, "autop,0", true ); $autop = bw_validate_torf( $autop ); //bw_trace2( $autop, "autop" ); bw_better_autop( $autop ); return( bw_ret()); }View on GitHub View on Trac