DescriptionUsageParametersExamplesSource Code
Description
This action hook can be used to add a custom footer to the print entry screen.
Usage
add_action( 'gform_print_entry_footer', 'custom_footer', 10, 2 );
Parameters
$form Form Object
The current form.
$entry Entry Object
The current entry array.
Examples
This example adds a custom footer to the Print Entry screen.
add_action( 'gform_print_entry_footer', 'custom_footer', 10, 2 );
function custom_footer( $form, $entry ) {
echo "
My custom footer";
}
Source Code
This filter is located in print-entry.php.