acf/load_field

acf/load_field

Hook Type: filter

See hook in core

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

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

  • /includes/acf-field-functions.php line 58
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    * @since   5.0.0
     *
     * @param   array The field array.
     */
    $field = apply_filters( 'acf/load_field', $field );
     
    // Store field using aliasses to also find via key, ID and name.
    $store->set( $field['key'], $field );
    $store->alias( $field['key'], $field['ID'], $field['name'] );
     
    // Return.