wpcf7_ctct_deprecated_warning()CF7 1.0

Хуков нет.

Возвращает

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

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

wpcf7_ctct_deprecated_warning( $page, $action, $object );
$page (обязательный)
-
$action (обязательный)
-
$object (обязательный)
-

Код wpcf7_ctct_deprecated_warning() CF7 6.0.6

function wpcf7_ctct_deprecated_warning( $page, $action, $object ) {
	$service = WPCF7_ConstantContact::get_instance();

	if ( $service->is_active() ) {
		$message = wp_kses(
			__( 'The Constant Contact integration is deprecated and planned to be <a href="https://contactform7.com/2025/01/08/complete-removal-of-constant-contact-integration/">completely removed</a> anytime soon. Contact Form 7 recommends <a href="https://contactform7.com/sendinblue-integration/">Brevo</a> as an alternative.', 'contact-form-7' ),
			array(
				'a' => array( 'href' => true ),
				'strong' => array(),
			),
			array( 'http', 'https' )
		);

		wp_admin_notice( $message, array( 'type' => 'warning' ) );
	}
}