gform_after_check_update

gform_after_check_update

DescriptionUsageParametersExamplesSource Code

Description
Runs a function after Gravity Forms has checked for an update.
Usage
add_action( 'gform_after_check_update', 'my_function', 10, 0 );

Parameters
There are not any parameters for this action.

Examples
function my_function() {
echo 'Update was checked';
}
add_action( 'gform_after_check_update', 'my_function', 10, 0 );

Source Code
This action hook is located in update.php.

发表回复

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