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.

發表回覆

您的電子郵箱地址不會被公開。 必填項已用 * 標註