無錫網(wǎng)站制作廈門創(chuàng)意互動教您如何 在wordpress上傳圖片自動重命名-中文圖片名稱自動轉(zhuǎn)為英文數(shù)字把下面的代碼添加至當(dāng)前主題functions.php文件:(添加在第一行的<?php下面)function rename_filename($filename) {$info = pathinfo($filename);$ext = empty($info[exten…
無錫網(wǎng)站制作廈門創(chuàng)意互動教您如何 在wordpress上傳圖片自動重命名-中文圖片名稱自動轉(zhuǎn)為英文數(shù)字
把下面的代碼添加至當(dāng)前主題functions.php文件:(添加在第一行的<?php下面)
function rename_filename($filename) {
$info = pathinfo($filename);
$ext = empty($info['extension']) ? '' : '.' . $info['extension'];
$name = basename($filename, $ext);
return substr(md5($name), 0, 20) . $ext;
}
add_filter('sanitize_file_name', 'rename_filename', 10);