Trying to capture posted data
-
Hello,
I’m using the plugin to create a job application form. My form contains a resume field wich is a file field.
I need to get the submitted data, so i’m using the ‘wpcf7_posted_data’ hook like this:// define the wpcf7_posted_data callback function filter_wpcf7_posted_data( $posted_data ) { die(var_dump($posted_data)); return $posted_data; }; // add the filter add_filter( 'wpcf7_posted_data', 'filter_wpcf7_posted_data', 10, 1 );
Actually i’m getting all the data except the files. Is there something i’m missing or is it not possible ?
Thank you!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Trying to capture posted data’ is closed to new replies.