Guest User

Gravity Forms: File Upload Url to Custom Field

a guest
Aug 7th, 2010
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. // file upload url to custom field on form submission
  4. add_action("gform_post_submission", "update_form_post_meta", 10, 2);
  5. function update_form_post_meta($entry, $form) {
  6.    
  7.     if($form['id'] != 1) return;
  8.    
  9.     update_post_meta($entry["post_id"], 'file_url', $entry[29]);
  10.    
  11. }
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment