wpcf7_sendinblue_doi_optin_callback

The contact-form-7 wpcf7 sendinblue doi optin callback hook.

Published Date - July 22, 2023

Description

'optin_callback' => apply_filters(
			'wpcf7_sendinblue_doi_optin_callback',
			'wpcf7_sendinblue_doi_default_optin_callback'
		),

Parameters

  1. $wpcf7_sendinblue_doi_default_optin_callback


Usage

The following example is for adding a hook callback.

// define the wpcf7_sendinblue_doi_optin_callback callback 
function custom_wpcf7_sendinblue_doi_optin_callback( $wpcf7_sendinblue_doi_default_optin_callback ){ 
   //custom code here
    return $wpcf7_sendinblue_doi_default_optin_callback
} 

//add the action 
add_filter('wpcf7_sendinblue_doi_optin_callback', 'custom_wpcf7_sendinblue_doi_optin_callback', 10, 1)

Defined

The filter is defined in the following location(s).

contact-form-7/modules/sendinblue/doi.php

'optin_callback' => apply_filters(
			'wpcf7_sendinblue_doi_optin_callback',
			'wpcf7_sendinblue_doi_default_optin_callback'
		),