开发者 | arshidkv12 |
---|---|
更新时间 | 2024年10月26日 14:49 |
捐献地址: | 去捐款 |
PHP版本: | 7.0 及以上 |
WordPress版本: | 6.6 |
版权: | 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 ';';
});