true, 'display-block' => true, 'not-for-mail' => true, ) ); } function wpcf7_reflection_form_tag_handler( $tag ) { if ( empty( $tag->name ) ) { return ''; } $content = ''; $values = (array) wpcf7_get_hangover( $tag->name ); if ( $values and ! wpcf7_get_validation_error( $tag->name ) ) { $values = array_map( function ( $val ) use ( $tag ) { return sprintf( '', esc_attr( $tag->name ), esc_html( $val ) ); }, $values ); $content = implode( '', $values ); } $html = sprintf( '
', wpcf7_format_atts( array( 'data-reflection-of' => $tag->name, 'class' => $tag->get_class_option( wpcf7_form_controls_class( $tag->type ) ), 'id' => $tag->get_id_option(), ) ), $content ); return $html; }