wordpress图片上传后自动改名
主题文件下的functions.php添加代码 // 上传的图片自动改名 add_filter('wp_handle_upload_prefilter', 'custom_upload_filter' ); function custom_upload_filter( $file ){ $info = pathinfo($file['name']); $ex…
主题文件下的functions.php添加代码 // 上传的图片自动改名 add_filter('wp_handle_upload_prefilter', 'custom_upload_filter' ); function custom_upload_filter( $file ){ $info = pathinfo($file['name']); $ex…