WordPress自带的丑爆了,还不会重命名,下面的代码让你能够自定义重命名。添加进functions.php中,其中-Yuz-ikmoe-这些都可以自定义。
//wordpress上传文件重命名
function git_upload_filter($file) {
$time = date("YmdHis");
$file['name'] = $time . "" .'-Yuz-ikmoe-'.mt_rand(1, 100) . "." . pathinfo($file['name'], PATHINFO_EXTENSION);
return $file;
}
add_filter('wp_handle_upload_prefilter', 'git_upload_filter');
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容