You appear to be a bot. Output may be restricted
Description
Create an empty div for a particular set of classes, id or both e.g. [sediv class="bd-100"]
Usage
bw_sediv( $atts );
Parameters
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik/includes/bobbcomp.phpLines:
1 to 6 of 6
function bw_sediv( $atts=null ) { $class = bw_array_get( $atts, 'class', null ); $id = bw_array_get( $atts, 'id', null ); sediv( $class, $id ); return( bw_ret()); }View on GitHub View on Trac