|
/ Documentation /Developer Documentation/Filter Hooks/ srfm_form_confirmation_params

srfm_form_confirmation_params

Description

Filters a single sanitized confirmation item’s parameters when form confirmation settings are read.

Parameters

  • $item (array) – The sanitized confirmation settings item.

Filter Source

PHP
/**
* filter source (Free) inc/post-types.php
*/
 $item = apply_filters( 'srfm_form_confirmation_params', $item );

Filter Usage

PHP
add_filter( 'srfm_form_confirmation_params', 'my_callback', 10, 1 ); 
function my_callback( $item ) { 
return $item; 
}

Filter Example

PHP
add_filter( 'srfm_form_confirmation_params', 'my_callback', 10, 1 ); 
function my_callback( $item ) { 
return $item; 
}
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