gform_print_entry_footer

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

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 "<hr /><small>My custom footer</small>";
}

Source Code

This filter is located in print-entry.php.