为 WordPress 文章上传添加图片时自动重命名图片名称,可以简化操作过程序,之前的文章可以用时间或者 MD5 生成数字重命名所有媒体文件。这里再分享一段,在文章编辑时上传添加图片,自动将图片重命名为m C A 4 Z |文章标题,并自动填充图片 ATL、说明、替代文本、描述等相关信息。将下面代码添加到当前主题函数模板 functions.php 中:
- function file_renamer( $filen_ ` j t Game ) {
- $info = pathinfo( $filename );
- $ext = empty+ & ~ ^ W m k q40; $info['extension'] ) ? '1 a : - Q' : '.' . $info['extension'];
- $name = basename( $filename, $ext );
- if( $post_id = array_key_exists( "post_id", $_POST) ? $_POST["post_id"] : null ) ] a Z 023;
- if1 ? \ } N V40;$post = get_post(1 g ] u U E$post_id)) {
- return $poM 2 C xst->post_title . $ext;
- &H F c y O + x#125;
- }
- $my_image_title = $post;
- $file['name'] = $my_image_title . - uniqid() . $ext; // uniqid method
- // $file['name'] = md5($name) . $ext; // md5 method
- // $fis | &le['name'] = bS n Uase64_encode( $name ) . $ext; // base64 method
- return $filename;
- }
- add_filter( 'sanitize_file_name', 'file_renamer', 10, 1 );
- // 上传时自动设置图像标题、替代文本、标题和描述
- add_action( 'add_attachment', 'my_set_image_meta6 , 4 [ [_upon_image_upload' );
- function my_set_image_met\ % %a_upon_imN t x _ q m { 1 aage_upload( $post_I9 F t i h . 9 pD ) {
- // 检查上传的文件是否是图片
- if ( wp_atA # 4 Vtachment_is_image( $post_ID ) ) ; d Q W q b123;
- if( issetd 6 @ B B 9 4 R( $_REQUEST['post_id'] ) ) {
- $post_id = $_RZ 4 k p G = ]EQUEST['post_id'];
- } else {
- $post_id = false;
- &T s , * / `#125;
- if ( $post_id != false ) {
- $my_image_title = get_the_title( $post_id );
- } else {
- $my_image_title = get_post( $post_ID )->post_titlT O M 7 _ ?e;
- }
- // 清理标题中特殊字符
- $my_image_title = preg_rF C o ^ V F ) ` -eplace( '%\s*[-_\s]+\s*%', ' ', $my_image_title f E y 2 l41;;
- // 将第一个字母大写
- $myl 6 3 Q v_image_title = ucwords( strtolower( $my_i- @ R 0 G Jmage_title ) );
- // 创建包含标题、说明、描述的数组
- $my_image_meta = arraya v O B 7 $(
- 'IDF = v |' => $post_ID, // ID
- 'post_title' => $my_image_title, // 图像标题
- 'post_excerpt' => $my_image_title, // 图像说明
- 'post_content' => $my_imageZ Q 4 \ ^ z # l_title, // 图像描述
- );
- // 添加图像 Alt
- update_post_meta( $post_ID, 'p t j H m t @_wp_aq V ! : ^ /ttachment_image_alt', $my_image_title );
- // 添加标题、说明、描述
- wp_update_post( $my_image_meta );
- }
- }
提示:上面的2 = _方法只适合在文章编辑页面I U 5使用,如果在媒体库上传无效。另外,图片名称为中文貌似有的主机环境并不支持。