Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save renventura/77d2ead97f443c71c4e57cb7adbc128b to your computer and use it in GitHub Desktop.
Save renventura/77d2ead97f443c71c4e57cb7adbc128b to your computer and use it in GitHub Desktop.
Snippet for programmatically creating entries in WPForms.
<?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 ),
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment