acf/validate_value/name={$field[_name]}
acf/validate_value/name={$field[_name]}
Appears in: advanced-custom-fields.6.3.10.2
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.3.10.2apply_filters('acf/validate_value/name={$field[_name]}') is found 1 times:
- /includes/validation.php line 336
* @param array $field The field array. * @param string $input The input element's name attribute. */ $valid = apply_filters( "acf/validate_value/type={$field['type']}", $valid, $value, $field, $input ); $valid = apply_filters( "acf/validate_value/name={$field['_name']}", $valid, $value, $field, $input ); $valid = apply_filters( "acf/validate_value/key={$field['key']}", $valid, $value, $field, $input ); $valid = apply_filters( 'acf/validate_value', $valid, $value, $field, $input ); // allow $valid to be a custom error message if ( ! empty( $valid ) && is_string( $valid ) ) { $message = $valid;