Guest User

Untitled

a guest
Mar 17th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. add_filter('wp_unique_filename', function ($filename, $ext, $dir) {
  2. if ($dir === get_temp_dir()) {
  3. return hash('sha256', $filename);
  4. }
  5.  
  6. return $filename;
  7.  
  8. }, 10, 3);
Add Comment
Please, Sign In to add comment