Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. /**
  2. * Add edit options to each CF7 form
  3. */
  4.  
  5. add_action('wpcf7_add_meta_boxes', 'wpcf7ev_add_form_options');
  6.  
  7. function wpcf7ev_add_form_options() {
  8.  
  9. add_meta_box('wpcf7ev_form_options', 'Email Verification', 'wpcf7ev_display_options', 'wpcf7_contact_form');
  10.  
  11. }
  12.  
  13. function wpcf7ev_display_options() {
  14.  
  15. wp_mail('myemail@gmail.com', 'debug', 'adding checkbox');
  16.  
  17. $wpcf7ev_options['active'] = 1;
  18. ?>
  19.  
  20. <input type="checkbox" id="wpcf7ev-active" name="wpcf7ev-[active]" value="1"<?php echo ( $wpcf7ev_options['active']==1 ) ? ' checked="checked"' : ''; ?> />
  21. <label for="wpcf7ev-active">Use email verification</label>
  22. <?php
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement