Advertisement
Guest User

Untitled

a guest
Dec 14th, 2012
83
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. // Note _1 should be changed to the ID of your form
  3. add_action("gform_after_submission_1", "get_post_content", 10, 2);
  4. function get_post_content($entry, $form){
  5.  
  6.     // Get the post
  7.     $post = get_post($entry["post_id"]);
  8.  
  9.     // Show all submitted files as an array
  10.     print_r( $post );
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement