acf/pre_update_value

acf/pre_update_value

Hook Type: filter

See hook in core

Displaying hooks found in version: advanced-custom-fields.5.12.2

apply_filters('acf/pre_update_value') is found 1 times:

  • /includes/acf-value-functions.php line 188
     */
    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.