acf_field_date_and_time_picker::format_value
This filter is appied to the $value after it is loaded from the db and before it is returned to the template
Method of the class: acf_field_date_and_time_picker{}
No Hooks.
Returns
$value. (mixed) the modified value
Usage
$acf_field_date_and_time_picker = new acf_field_date_and_time_picker(); $acf_field_date_and_time_picker->format_value( $value, $post_id, $field );
- $value(required)
- .
- $post_id(required)
- .
- $field(required)
- .
Changelog
| Since 3.6 | Introduced. |
acf_field_date_and_time_picker::format_value() acf field date and time picker::format value code ACF 6.0.4
function format_value( $value, $post_id, $field ) {
return acf_format_date( $value, $field['return_format'] );
}