欢迎来到站长天空!

WordPress

当前位置: 主页 > CMS教程 > WordPress

WordPress 上传媒体库文件重命名 全格式支持

时间:2025-11-11 15:29:10|栏目:WordPress|点击:

修改上传文件名为:年月日时分秒+两位随机数.扩展名

打开/wp-admin/includes/file.php文件

$filename = wp_unique_filename( $uploads['path'], $file['name'], $unique_filename_callback );  
  
// Move the file to the uploads dir.

替换为

$time=date("YmdH:i:s",time()+8*60*60);  
$file['name'] = $time."".mt_rand(1,100).".".$ext ;  
$filename = wp_unique_filename( $uploads['path'], $file['name'], $unique_filename_callback );  
  
// Move the file to the uploads dir.

保存覆盖源文件即可!


上一篇:解决wordpress安装后更新或者上传文件权限不足的问题

栏    目:WordPress

下一篇:wordpress附件保存目录改为年月日和上传文件重命名为时间戳

本文标题:WordPress 上传媒体库文件重命名 全格式支持

本文地址:https://zz.feitang.co/CMSjiaocheng/25993.html

广告投放 | 联系我们 | 版权申明

申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:257218569 | 邮箱:257218569@qq.com

Copyright © 2018-2025 站长天空 版权所有 Powered by EyouCms冀ICP备14023439号