DescriptionUsageParametersPlacementSource Code
Description
In some cases, you may want to process a feed asynchronously. The gform_is_feed_asynchronous filter will allow you to do so.
Usage
The following would apply to all forms.
1add_filter( 'gform_is_feed_asynchronous', '__return_true' );
Parameters
$is_asynchronous bool
Is feed being processed asynchronously?
$feed array
The Feed Object currently being processed.
$form array
The Form Object currently being processed.
$entry array
The Entry Object currently being processed.
Placement
This code should be placed in the functions.php file of your active theme.
Source Code
This filter is located in class-gf-feed-addon.php.