|

srfm_after_submit_button

Description

Fires just after the form’s submit button is rendered. Counterpart to srfm_before_submit_button.

Parameters

$id (int) – The form ID.

Hook Source

PHP
/**
* hook source
 */
do_action( 'srfm_after_submit_button', $id );

Hook Usage

PHP
add_action( 'srfm_after_submit_button', 'my_callback', 10, 1 ); 
function my_callback( $id ) { 
// Output markup after the submit button.
 }

Hook Example

PHP
add_action( 'srfm_after_submit_button', 'my_callback', 10, 1 ); 
function my_callback( $id ) { 
// Output markup after the submit button.
 }
Was this doc helpful?
What went wrong?

We don't respond to the article feedback, we use it to improve our support content.

Need help? Contact Support
Table of Contents
Scroll to Top