Add filter for gravity form to not create post
authorSteve Sutton <steve@gaslightmedia.com>
Thu, 9 Jun 2016 15:52:15 +0000 (11:52 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Thu, 9 Jun 2016 16:02:09 +0000 (12:02 -0400)
This will keep custom field types in gravity form from creating Untitled
post entries.

functions.php

index 3dadcf8..ab2f4e6 100644 (file)
@@ -279,4 +279,8 @@ function woo_related_products_limit() {
     $args['posts_per_page'] = 4;
     return $args;
 } 
-?>
\ No newline at end of file
+add_filter( 'gform_disable_post_creation', 'disable_post_creation', 10, 3 );
+function disable_post_creation( $is_disabled, $form, $entry ) {
+    return true;
+}
+?>