wordpress基础

wordpress上传中文图片和给图片重命名的方法

日期:2016-07-01 阅读:1172

dmandwp系统 - wordpress系统和DM系统区块建站>>

把上传图片重命名,按日期时间加随机码组成。

只要在主题的 function.php 加以下代码即可:

 

function tvwp_wp_handle_upload_prefilter($file){

$imgqianzui=date("Ymd_His").rand(1000,9999);

$file['name'] = $imgqianzui.".".pathinfo($file['name'] , PATHINFO_EXTENSION);

return $file;

}

 add_filter('wp_handle_upload_prefilter', 'tvwp_wp_handle_upload_prefilter');

 

 

<<点击返回