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