Description
There is a filter available to set a default (CSV) delimiter. This delimiter is then automatically selected on admin pages (default delimiter is 'comma').
Usage
function acfcs_delimiter( $value ) {
return $value;
}
add_filter( 'acfcs_delimiter', 'acfcs_delimiter' );
The returned $default_value must be a string with one of the following delimiters:
- , [comma]
- ; [semi-colon]
- | [pipe]
Used in
- admin/acfcs-preview.php - line 24
- admin/process-file-form.php - line 28
- inc/form-handling.php - line 39