acf/pre_update_value
acf/pre_update_value
Appears in: advanced-custom-fields.6.3.5
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.3.5apply_filters('acf/pre_update_value') is found 1 times:
- /includes/acf-value-functions.php line 200196197198199200201202203204205206
*/
function
acf_update_value(
$value
,
$post_id
,
$field
) {
// Allow filter to short-circuit update_value logic.
$check
= apply_filters(
'acf/pre_update_value'
, null,
$value
,
$post_id
,
$field
);
if
(
$check
!== null ) {
return
$check
;
}
/**
* Filters the
$value
before it is updated.