acf/pre_update_value
acf/pre_update_value
Appears in: advanced-custom-fields.6.2.9
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.2.9apply_filters('acf/pre_update_value') is found 1 times:
- /includes/acf-value-functions.php line 200
*/ 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.