acf/delete_{$this->hook_name}
acf/delete_{$this->hook_name}
Appears in: advanced-custom-fields.6.2.7
Hook Type: action
Displaying hooks found in version: advanced-custom-fields.6.2.7do_action('acf/delete_{$this->hook_name}') is found 2 times:
- /includes/class-acf-internal-post-type.php line 602598599600601602603604605606607608
* @since 5.0.0
*
* @param
array
$post
The ACF post
array
.
*/
do_action(
"acf/delete_{$this->hook_name}"
,
$post
);
return
true;
}
/**
* Trashes an ACF post.
- /includes/post-types/class-acf-field-group.php line 232228229230231232233234235236237238
* @since 5.0.0
*
* @param
array
$post
The ACF post
array
.
*/
do_action(
"acf/delete_{$this->hook_name}"
,
$post
);
return
true;
}
/**
* Trashes an ACF field group
and
related fields.