Atenção!

Este artigo contém código PHP e destina-se a desenvolvedores. Oferecemos este código como uma cortesia, mas não fornecemos suporte para personalizações de código ou desenvolvimento de terceiros.

Para orientação extra, consulte o tutorial do WPBeginner sobre como adicionar código personalizado.

Dispensar

Descrição

The wpforms_display_submit_before action fires immediately before the submit button element is displayed.

Parâmetros

$form_data
(array) Configurações/dados do formulário processados, preparados para uso posterior.

Fonte

wpforms/src/Frontend/Frontend.php

Mais Informações

The action fires within the form’s submit button container div, just before the submit button element.

For example, you can use this hook to add HTML output before the submit button.

As an alternative, you could use the wpforms_display_submit_after to display something after the Submit button on the form.

Exemplos

In our example code snippet, we will be checking first to see if the form ID is equal to 5. If it is, a link to a video will display just before the form’s Submit button.

Just remember to change the form ID from 5 to match the specific form ID you’re wanting to run your code on. Removing this line of the code would run for all forms.

If you need assistance in finding your form ID, you can review this tutorial.

/**
 * Action that fires immediately before the submit button element is displayed.
 * 
 * @link  https://wpforms.com/developers/wpforms_display_submit_before/
 * 
 * @param array  $form_data Form data and settings
 */

function wpf_dev_display_submit_before( $form_data ) {
 
    // Only run on my form with ID = 5
    if ( absint( $form_data[ 'id' ] ) !== 5 ) {
            return;
        } 
 		
    // Run code or see example echo statement below.
    _e( '<div class="track-click"> <a href="https://www.youtube.com/watch?v=eiQ3viAGung" data-rel="lightbox">Click here for a special video announcement!</a>.</div>', 'plugin-domain' );

}
add_action( 'wpforms_display_submit_before', 'wpf_dev_display_submit_before', 10, 1 );