-
-
Save renventura/77d2ead97f443c71c4e57cb7adbc128b to your computer and use it in GitHub Desktop.
<?php | |
// Create entry. | |
$entry_id = wpforms()->entry->add( array( | |
'form_id' => absint( $form_id ), | |
'user_id' => absint( $user_id ), | |
'fields' => wp_json_encode( $fields ), | |
'ip_address' => sanitize_text_field( $user_ip ), | |
'user_agent' => sanitize_text_field( $user_agent ), | |
'date' => $date, | |
'user_uuid' => sanitize_text_field( $user_uuid ), | |
) ); |
I’m honestly not too sure. Been a few years since I’ve used WPForms. It’s possible something in this code is no longer the way of doing it, but I’m not up to date on the plugin so I couldn’t say for certain. It definitely worked when I wrote this, though.
example value for "$fields":
$fields = [ '1' => [ 'name' => 'First name', 'value' => 'Robert', 'id' => 1, 'type' => 'text' ], '2' => [ 'name' => 'Last name', 'value' => 'Smith', 'id' => 2, 'type' => 'text' ], '3' => [ 'name' => 'Email address', 'value' => '[email protected]', 'id' => 3, 'type' => 'email' ] ];
the code works, BUT it only adds the entry to the database, it does not send confirmation mails, create pdf files, ... . on top of that the fields are not added to the table "wp_wpforms_entry_fields" (what happens, if you submit a form non programmatically). does anyone know how to trigger a "real" submit with php?
@renventura I'm missing something, this does not work.
I see this is older, did it work previously?