acf/schema/format_value/pre/name={$field_name}
acf/schema/format_value/pre/name={$field_name}
Appears in: advanced-custom-fields.6.8.0
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.8.0apply_filters('acf/schema/format_value/pre/name={$field_name}') is found 1 times:
- /src/AI/GEO/GEO.php line 385
* @param string $field_type_name The field type name. */ $pre_value = apply_filters( 'acf/schema/format_value/pre', null, $value, $field_object, $field_type_name ); $pre_value = apply_filters( "acf/schema/format_value/pre/type={$field_type_name}", $pre_value, $value, $field_object ); $pre_value = apply_filters( "acf/schema/format_value/pre/name={$field_name}", $pre_value, $value, $field_object ); if ( null !== $pre_value ) { return $pre_value; } // Get the field type class instance.