Skip to content

Instantly share code, notes, and snippets.

@mattwatsoncodes
Created June 26, 2018 14:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattwatsoncodes/1e1da50011532ec18687a82aba74f50a to your computer and use it in GitHub Desktop.
Save mattwatsoncodes/1e1da50011532ec18687a82aba74f50a to your computer and use it in GitHub Desktop.
Prevent Gravity Forms Storing Data
<?php
/**
* Prevent gravity forms storing data
**/
function mkdo_remove_form_entry( $entry ) {
if ( class_exists( 'GFAPI' ) ) {
GFAPI::delete_entry( $entry['id'] );
}
}
add_action( 'gform_after_submission', 'mkdo_remove_form_entry' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment