Нет описания

recaptcha-description.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <p><?php esc_html_e( 'reCAPTCHA is a free anti-spam service from Google which helps to protect your website from spam and abuse while letting real people pass through with ease.', 'wpforms-lite' ); ?></p>
  2. <p><?php esc_html_e( 'Google offers 3 versions of reCAPTCHA (all supported within WPForms):', 'wpforms-lite' ); ?></p>
  3. <ul style="list-style: disc;margin-left: 20px;">
  4. <li>
  5. <?php
  6. echo wp_kses(
  7. __( '<strong>v2 Checkbox reCAPTCHA</strong>: Prompts users to check a box to prove they\'re human.', 'wpforms-lite' ),
  8. [ 'strong' => [] ]
  9. );
  10. ?>
  11. </li>
  12. <li>
  13. <?php
  14. echo wp_kses(
  15. __( '<strong>v2 Invisible reCAPTCHA</strong>: Uses advanced technology to detect real users without requiring any input.', 'wpforms-lite' ),
  16. [ 'strong' => [] ]
  17. );
  18. ?>
  19. </li>
  20. <li>
  21. <?php
  22. echo wp_kses(
  23. __( '<strong>v3 reCAPTCHA</strong>: Uses a behind-the-scenes scoring system to detect abusive traffic, and lets you decide the minimum passing score. Recommended for advanced use only (or if using Google AMP).', 'wpforms-lite' ),
  24. [ 'strong' => [] ]
  25. );
  26. ?>
  27. </li>
  28. </ul>
  29. <p><?php esc_html_e( 'Sites already using one type of reCAPTCHA will need to create new site keys before switching to a different option.', 'wpforms-lite' ); ?></p>
  30. <p>
  31. <?php
  32. printf(
  33. wp_kses( /* translators: %s - WPForms.com Setup reCAPTCHA URL. */
  34. __( '<a href="%s" target="_blank" rel="noopener noreferrer">Read our walk through</a> to learn more and for step-by-step directions.', 'wpforms-lite' ),
  35. [
  36. 'a' => [
  37. 'href' => [],
  38. 'target' => [],
  39. 'rel' => [],
  40. ],
  41. ]
  42. ),
  43. 'http://wpforms.com/docs/how-to-set-up-and-use-recaptcha-in-wpforms/'
  44. );
  45. ?>
  46. </p>