gform_entry_detail_title

gform_entry_detail_title

DescriptionUsageParametersExampleSource Code

Description
The 「gform_entry_detail_title」 filter in Gravity Forms allows the title displayed on the entry detail page to be modified.
Usage
add_filter( 'gform_entry_detail_title', 'my_function_call' );

Parameters

$title string
The title used.

$form array
The form object.

$entry array
The entry object

Example
add_filter( 'gform_entry_detail_title', function( $title, $form, $entry ) {
return 'Your new title for entry #' . $entry['id'];
}, 10, 3 );

Source Code
This filter is located in entry_detail.php.

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注