共计 314 个字符,预计需要花费 1 分钟才能阅读完成。
操作方法: 定位路径 :/wp-content/themes/ 当前主题 / → functions.php
// 方法一:按时间戳 + 两位随机数
add_filter('wp_handle_upload_prefilter','auto_rename_by_time');
function auto_rename_by_time($file){
$info = pathinfo($file['name']);
$ext = strtolower($info['extension']);
$new_name = date('YmdHis') . rand(10,99) . '.' . $ext;
$file['name'] = $new_name;
return $file;
}