Description
The gform_post_entry_list action fires after the entry list content is generated. Echoed content would appear after the bulk actions/paging links below the entry list table.
Usage
The following would run for all forms.
add_action( 'gform_post_entry_list', 'your_function_name' );
Parameters
| Parameter | Type | Description |
|---|---|---|
$form_id | integer | The ID of the form the entry list is being displayed for. |
Examples
Add custom content below the entry list.
add_action( 'gform_post_entry_list', 'echo_content' );
function echo_content( $form_id ) {
echo 'some content here';
}
Placement
This code can be used in the functions.php file of the active theme, a custom functions plugin, a custom add-on, or with a code snippets plugin.
See also the PHP section in this article: Where Do I Put This Code?
Source Code
do_action( 'gform_post_entry_list', $form_id );
This hook is located in GFEntryList::all_leads_page() in entry_list.php.
Since
This hook was added in Gravity Forms 1.9.13.21.