Created
May 3, 2020 15:50
-
-
Save renventura/77d2ead97f443c71c4e57cb7adbc128b to your computer and use it in GitHub Desktop.
Snippet for programmatically creating entries in WPForms.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@renventura I'm missing something, this does not work.
I see this is older, did it work previously?