You appear to be a bot. Output may be restricted
Description
Create the submit button for the contact form
Usage
bw_contact_form_submit_button( $atts );
Parameters
- $atts
- ( array ) required – containing "contact" or "me" or defaults
Returns
voidSource
File name: oik/shortcodes/oik-contact-form.phpLines:
1 to 9 of 9
function bw_contact_form_submit_button( $atts ) { $text = bw_array_get( $atts, "contact", null ); if ( !$text ) { $me = bw_get_me( $atts ); /* translators: %s: name to contact */ $text = sprintf( __( "Contact %s" ), $me ); } e( isubmit( bw_contact_form_id(), $text, null ) ); }View on GitHub View on Trac