| 开发者 | arshidkv12 |
|---|---|
| 更新时间 | 2025年10月1日 13:33 |
| 捐献地址: | 去捐款 |
| PHP版本: | 7.0 及以上 |
| WordPress版本: | 6.8.3 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
To change the CSV delimiter to a semicolon, add the following code to your theme's functions.php file:
add_filter('cfdb7_csv_delimiter', function( $delimiter ){
return ';';
});