acf/format_value
acf/format_value
Appears in: advanced-custom-fields.5.12.1
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.5.12.1apply_filters('acf/format_value') is found 1 times:
- /includes/acf-value-functions.php line 160
* @param mixed $value The value to preview. * @param string $post_id The post ID for this value. * @param array $field The field array. */ $value = apply_filters( 'acf/format_value', $value, $post_id, $field ); // Update store. $store->set( "$post_id:$field_name:formatted", $value ); // Return value. return $value;