Description
Create the form tag
Usage
bw_form_tag( $format );Parameters
- $format
- ( mixed ) required –
Returns
voidSource
File name: oik-fields/shortcodes/oik-new.phpLines:
1 to 10 of 10
function bw_form_tag( $format ) { $extras = null; if ( false !== strpos( $format, "I" ) ) { $extras = kv( "enctype", "multipart/form-data" ); } if ( false !== strpos( $format, "F" ) ) { $extras = kv( "enctype", "multipart/form-data" ); } bw_form( "", "post", null, $extras ); }View on GitHub
