honeypot.php 626 B

12345678910111213141516171819202122
  1. <?php if ( ! defined( 'ABSPATH' ) ) exit;
  2. /**
  3. * Output our honeypot field
  4. * @since 2.9.22
  5. * @param int $form_id
  6. * @return void
  7. */
  8. function ninja_forms_display_honeypot( $form_id ) {
  9. $hp_name = ninja_forms_random_string( 5 );
  10. ?>
  11. <div class="hp-wrap">
  12. <label><?php _e( 'If you are a human and are seeing this field, please leave it blank.', 'ninja-forms' ); ?>
  13. <input type="text" value="" name="_<?php echo $hp_name; ?>">
  14. <input type="hidden" value="_<?php echo $hp_name; ?>" name="_hp_name">
  15. </label>
  16. </div>
  17. <?php
  18. }
  19. add_action( 'ninja_forms_display_before_fields', 'ninja_forms_display_honeypot', 9 );