acf/get_field_label

acf/get_field_label

Hook Type: filter

See hook in core

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

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

  • /includes/acf-field-functions.php line 872
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
         * @param   string The label HTML.
         * @param   array $field The field array.
         * @param   string $context The output context (admin).
         */
        $label = apply_filters( 'acf/get_field_label', $label, $field, $context );
     
        // Return label.
        return $label;
    }
     
    /**