1 2 3 4 5 6 | //WordPress 实现附件上传自动重命名但不改变附件标题 function wp_coderbusy_sanitize_file_name( $filename ) { $time = date("YmdHis"); return $time . "" . mt_rand(1000, 9999) . "." . pathinfo($filename, PATHINFO_EXTENSION); } add_filter( 'sanitize_file_name', 'wp_coderbusy_sanitize_file_name', 10, 1 ); |
原文链接:https://xiaohost.com/3389.html,转载请注明出处。
评论0