email-heading.php
1 year ago
hcaptcha-description.php
2 years ago
recaptcha-description.php
2 years ago
specific-note.php
2 years ago
turnstile-description.php
2 years ago
turnstile-description.php
30 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Description template for Turnstile. |
| 4 | */ |
| 5 | |
| 6 | if ( ! defined( 'ABSPATH' ) ) { |
| 7 | exit; |
| 8 | } |
| 9 | |
| 10 | ?> |
| 11 | |
| 12 | <p><?php esc_html_e( 'Cloudflare Turnstile is a free, CAPTCHA-like service for preventing form spam while protecting data privacy. It offers a user-friendly experience by confirming visitors are real humans without requiring them to solve puzzles or math questions.', 'wpforms-lite' ); ?></p> |
| 13 | <p> |
| 14 | <?php |
| 15 | printf( |
| 16 | wp_kses( /* translators: %s - WPForms.com Setup Cloudflare Turnstile URL. */ |
| 17 | __( 'For more details on how Turnstile works, as well as a step by step setup guide, please check out our <a href="%s" target="_blank" rel="noopener noreferrer">documentation</a>.', 'wpforms-lite' ), |
| 18 | [ |
| 19 | 'a' => [ |
| 20 | 'href' => [], |
| 21 | 'target' => [], |
| 22 | 'rel' => [], |
| 23 | ], |
| 24 | ] |
| 25 | ), |
| 26 | esc_url( wpforms_utm_link( 'https://wpforms.com/docs/setting-up-cloudflare-turnstile/', 'Settings - Captcha', 'Turnstile Documentation' ) ) |
| 27 | ); |
| 28 | ?> |
| 29 | </p> |
| 30 |