You appear to be a bot. Output may be restricted
Description
Start a div tag Use in conjunction with ediv to add custom divs in pages, posts or blocks e.g. [div class="blah"]blah goes here[ediv]
Usage
bw_sdiv( $atts );
Parameters
- $atts
- ( mixed ) required –
Returns
voidSource
File name: oik/includes/bobbcomp.phpLines:
1 to 6 of 6
function bw_sdiv( $atts ) { $class = bw_array_get( $atts, 'class', null ); $id = bw_array_get( $atts, 'id', null ); sdiv( $class, $id ); return( bw_ret()); }View on GitHub View on Trac