wpcf7_sendinblue_register_property()CF7 1.0

Registers the sendinblue contact form property.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

wpcf7_sendinblue_register_property( $properties, $contact_form );
$properties (обязательный)
-
$contact_form (обязательный)
-

Код wpcf7_sendinblue_register_property() CF7 5.9.3

function wpcf7_sendinblue_register_property( $properties, $contact_form ) {
	$service = WPCF7_Sendinblue::get_instance();

	if ( $service->is_active() ) {
		$properties += array(
			'sendinblue' => array(),
		);
	}

	return $properties;
}