为 WordPress 文章上传添加图片时自动重命名图片名称,可以简化操作过程序,也可以用时间或者MD5生成数字重命名所有媒体文件。
将下面代码添加到当前主题函数模板functions.php中:
代码一,按时间重命名
上传文件时会以“年月日时分秒+千位毫秒整数”的格式重命名文件,如“20161023122221765.jpg”文章源自知更鸟-https://zmingcx.com/wordpress-upload-file-renaming.html
-
// wordpress上传文件重命名
-
function git_upload_filter($file) {
-
$time = date("YmdHis");
-
$file['name'] = $time . "" . mt_rand(1, 100) . "." . pathinfo($file['name'], PATHINFO_EXTENSION);
-
return $file;
-
}
-
add_filter('wp_handle_upload_prefilter', 'git_upload_filter');
文章源自知更鸟-https://zmingcx.com/wordpress-upload-file-renaming.html
代码二,用MD5加密生成数字并重命名
名称规则是由系统自动生成的一个32位的MD5加密文件名,由于默认生成的32位文件名有点长,所以使用substr(md5($name), 0, 20) 截断将其设置为20位。文章源自知更鸟-https://zmingcx.com/wordpress-upload-file-renaming.html
-
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);
代码三,重命名为文章标题
文章源自知更鸟-https://zmingcx.com/upload-image-renamed-to-article-title.html
-
function file_renamer( $filename ) {
-
$info = pathinfo( $filename );
-
$ext = empty( $info['extension'] ) ? '' : '.' . $info['extension'];
-
$name = basename( $filename, $ext );
-
if( $post_id = array_key_exists( "post_id", $_POST) ? $_POST["post_id"] : null ) {
-
if($post = get_post($post_id)) {
-
return $post->post_title . $ext;
-
}
-
}
-
-
$my_image_title = $post;
-
$file['name'] = $my_image_title . - uniqid() . $ext; // uniqid method
-
// $file['name'] = md5($name) . $ext; // md5 method
-
// $file['name'] = base64_encode( $name ) . $ext; // base64 method
-
return $filename;
-
}
-
-
add_filter( 'sanitize_file_name', 'file_renamer', 10, 1 );
-
-
// 上传时自动设置图像标题、替代文本、标题和描述
-
add_action( 'add_attachment', 'my_set_image_meta_upon_image_upload' );
-
function my_set_image_meta_upon_image_upload( $post_ID ) {
-
-
// 检查上传的文件是否是图片
-
if ( wp_attachment_is_image( $post_ID ) ) {
-
-
if( isset( $_REQUEST['post_id'] ) ) {
-
$post_id = $_REQUEST['post_id'];
-
} else {
-
$post_id = false;
-
}
-
-
if ( $post_id != false ) {
-
$my_image_title = get_the_title( $post_id );
-
} else {
-
$my_image_title = get_post( $post_ID )->post_title;
-
}
-
-
// 清理标题中特殊字符
-
$my_image_title = preg_replace( '%\s*[-_\s]+\s*%', ' ', $my_image_title );
-
-
// 将第一个字母大写
-
$my_image_title = ucwords( strtolower( $my_image_title ) );
-
-
// 创建包含标题、说明、描述的数组
-
$my_image_meta = array(
-
'ID' => $post_ID, // ID
-
'post_title' => $my_image_title, // 图像标题
-
'post_excerpt' => $my_image_title, // 图像说明
-
'post_content' => $my_image_title, // 图像描述
-
);
-
-
// 添加图像 Alt
-
update_post_meta( $post_ID, '_wp_attachment_image_alt', $my_image_title );
-
-
// 添加标题、说明、描述
-
wp_update_post( $my_image_meta );
-
}
-
}
文章源自知更鸟-https://zmingcx.com/wordpress-upload-file-renaming.html
提示:上面的方法只适合在文章编辑页面使用,如果在媒体库上传无效。另外,图片名称为中文貌似有的主机环境并不支持。