wpcf7_sendinblue_doi_register_agent()
Registers wpcf7_sendinblue as an agent.
Возвращает
null. Ничего (null).
Использование
wpcf7_sendinblue_doi_register_agent();
Код wpcf7_sendinblue_doi_register_agent() wpcf7 sendinblue doi register agent CF7 6.1.4
function wpcf7_sendinblue_doi_register_agent() {
if ( ! function_exists( 'doihelper_register_agent' ) ) {
return;
}
doihelper_register_agent( 'wpcf7_sendinblue', array(
'optin_callback' => apply_filters(
'wpcf7_sendinblue_doi_optin_callback',
'wpcf7_sendinblue_doi_default_optin_callback'
),
'email_callback' => apply_filters(
'wpcf7_sendinblue_doi_email_callback',
'wpcf7_sendinblue_doi_default_email_callback'
),
) );
}