Skip to content

Instantly share code, notes, and snippets.

View herrschuessler's full-sized avatar

Christoph Schüßler herrschuessler

View GitHub Profile
@herrschuessler
herrschuessler / gf_remove_form_entry.php
Last active February 16, 2021 09:14
Remove Gravity Forms entry from db directly after creation
<?php
/**
* Remove Gravity Forms entry from db directly after creation.
*
* @param object $entry The entry.
*/
function gf_remove_form_entry( $entry ) {
if ( class_exists( 'GFAPI' ) ) {
\GFAPI::delete_entry( (int) $entry['id'] );