WordPress上传文件自动重命名
使用方法
将代码添加到当前主题functions.php模板文件中即可。
上传文件时会以“年月日时分秒+千位毫秒整数”的格式重命名文件,如“20201012104831765.jpg”
[v_act]//中文文件重命名
function git_upload_filter($file) {
$time = date("YmdHis");
$file['name'] = $time . "" . mt_rand(1, 100) . "." . pathinfo($file['name'], PATHINFO_EXTENSION);
return $file;
}
add_filter('wp_handle_upload_prefilter', 'git_upload_filter');[/v_act]