The contact-form-7 wpcf7 constant contact doi optin callback hook.
Published Date - July 22, 2023
'optin_callback' => apply_filters(
'wpcf7_constant_contact_doi_optin_callback',
'wpcf7_constant_contact_doi_default_optin_callback'
),
$wpcf7_constant_contact_doi_default_optin_callback
The following example is for adding a hook callback.
// define the wpcf7_constant_contact_doi_optin_callback callback
function custom_wpcf7_constant_contact_doi_optin_callback( $wpcf7_constant_contact_doi_default_optin_callback ){
//custom code here
return $wpcf7_constant_contact_doi_default_optin_callback
}
//add the action
add_filter('wpcf7_constant_contact_doi_optin_callback', 'custom_wpcf7_constant_contact_doi_optin_callback', 10, 1)
The filter is defined in the following location(s).
contact-form-7/modules/constant-contact/doi.php
'optin_callback' => apply_filters(
'wpcf7_constant_contact_doi_optin_callback',
'wpcf7_constant_contact_doi_default_optin_callback'
),