編輯wp-admin/includes/file.php 這個文件 1、查找:$new_file = $uploads['path'] . "/$filename"; 替換為: $new_file = $uploads['path'] . "/" . iconv("UTF-8","GB2312",$filename); 注意,之需要替換第一處即可! 2、查找return apply_filters( 'wp_handle_upload', array( 'file' => $new_file, 'url' => $url, 'type' =>$type ), 'upload' ); 修改為:(修正中文文件名編碼問題) return apply_filters( 'wp_handle_upload', array( 'file' => $uploads['path'] . "/$filename", 'url'=> $url, 'type' => $type ) , 'upload');
|