gravityflowformconnector_update_entry_form

The gravityflowformconnector_update_entry_form filter allows the form of entry for update to be customized/hydrated.

Parameters

Parameter Type Definition
$form Array The current form array.
$entry Array The current entry array.



Examples

add_action( 'gravityflowformconnector_update_entry_form', 'jo_hydrate_entry_form', 10, 2 );
function jo_hydrate_entry_form( $form, $entry ) {
	// Customize the form object as needed.
	return $form;
}

Placement

This code should be placed in the functions.php file of your active theme or in a custom functions plugin.