Skip to content

Instantly share code, notes, and snippets.

@ryanburnette
Created May 3, 2014 13:41
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 ryanburnette/889207a8bc33c23c7774 to your computer and use it in GitHub Desktop.
Save ryanburnette/889207a8bc33c23c7774 to your computer and use it in GitHub Desktop.
Add additional actions to a Gravity Forms submission in WordPress.
<?php
function do_something_else($entry, $form) {
// Gravity Forms has validated the data
// Our Custom Form Submitted via PHP will go here
}
add_action("gform_post_submission", "do_something_else", 10, 2);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment