is there a way to rename files during the upload progress within the WordPress 3.0 backend? I would like to have a consistent naming of files, especially for images.
I think an 12 (+-) digit hash value of the original filename or something similar would be awesome. Any suggestions?
Regards
Not quite sure about that – this seems fairly easy;
This filter creates a 32 character hash of the original filename, preserving the file extension. You could chop it down a little using
substr()if you wanted to.This filter runs once the file has been uploaded to a temporary directory on your server, but before it is resized (if applicable) and saved to your uploads folder.
Note that there is no risk of file overwrite – in the event that a newly hashed file is the same as one that already exists, WordPress will try appending an incrementing digit to the filename until there is no longer a collision.
WordPress Plugin