acf/pre_format_value

acf/pre_format_value

Hook Type: filter

See hook in core

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

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

  • /includes/acf-value-functions.php line 148
     */
    function acf_format_value( $value, $post_id, $field ) {
    
    	// Allow filter to short-circuit load_value logic.
    	$check = apply_filters( 'acf/pre_format_value', null, $value, $post_id, $field );
    	if ( $check !== null ) {
    		return $check;
    	}
    
    	// Get field name.
    	$field_name = $field['name'];