wpcf7_captcha_future_warning()
Хуков нет.
Возвращает
null. Ничего (null).
Использование
wpcf7_captcha_future_warning( $page, $action, $object );
- $page(обязательный)
- .
- $action(обязательный)
- .
- $object(обязательный)
- .
Код wpcf7_captcha_future_warning() wpcf7 captcha future warning CF7 6.1.5
function wpcf7_captcha_future_warning( $page, $action, $object ) {
$service = WPCF7_RECAPTCHA::get_instance();
if ( $service->is_active() ) {
wp_admin_notice(
__( '<strong>Attention reCAPTCHA users:</strong> Google attempts to make all reCAPTCHA users migrate to reCAPTCHA Enterprise, meaning Google charges you for API calls exceeding the free tier. Contact Form 7 supports <a href="https://contactform7.com/turnstile-integration/">Cloudflare Turnstile</a>, and we recommend it unless you have reasons to use reCAPTCHA.', 'contact-form-7' ),
array( 'type' => 'warning' )
);
}
}