acf_field_radio::format_value
This filter is appied to the $value after it is loaded from the db and before it is returned to the template
Метод класса: acf_field_radio{}
Хуков нет.
Возвращает
$value. (mixed) the modified value
Использование
$acf_field_radio = new acf_field_radio(); $acf_field_radio->format_value( $value, $post_id, $field );
- $value(обязательный)
- .
- $post_id(обязательный)
- .
- $field(обязательный)
- .
Список изменений
| С версии 3.6 | Введена. |
Код acf_field_radio::format_value() acf field radio::format value ACF 6.4.2
function format_value( $value, $post_id, $field ) {
return acf_get_field_type( 'select' )->format_value( $value, $post_id, $field );
}