acf/get_field_label
Filters the field's label HTML.
Использование
add_filter( 'acf/get_field_label', 'wp_kama_acf_get_field_label_filter', 10, 3 );
/**
* Function for `acf/get_field_label` filter-hook.
*
* @param string $label The label HTML.
* @param array $field The field array.
* @param string $context The output context (admin).
*
* @return string
*/
function wp_kama_acf_get_field_label_filter( $label, $field, $context ){
// filter...
return $label;
}
- $label(строка)
- The label HTML.
- $field(массив)
- The field array.
- $context(строка)
- The output context (admin).
Список изменений
| С версии 5.7.10 | Введена. |
Где вызывается хук
acf/get_field_label
acf/includes/acf-field-functions.php 872
$label = apply_filters( 'acf/get_field_label', $label, $field, $context );