wpcf7_submit_form_tag_handler()
Хуков нет.
Возвращает
null. Ничего (null).
Использование
wpcf7_submit_form_tag_handler( $tag );
- $tag(обязательный)
- .
Код wpcf7_submit_form_tag_handler() wpcf7 submit form tag handler CF7 6.1.6
function wpcf7_submit_form_tag_handler( $tag ) {
$class = wpcf7_form_controls_class( $tag->type, 'has-spinner' );
$atts = array();
$atts['class'] = $tag->get_class_option( $class );
$atts['id'] = $tag->get_id_option();
$atts['tabindex'] = $tag->get_option( 'tabindex', 'signed_int', true );
$value = isset( $tag->values[0] ) ? $tag->values[0] : '';
if ( empty( $value ) ) {
$value = __( 'Send', 'contact-form-7' );
}
$atts['type'] = 'submit';
$atts['value'] = $value;
$atts = wpcf7_format_atts( $atts );
$html = sprintf( '<input %1$s />', $atts );
return $html;
}