在特定文件类型的上传过程中,我可以暂时禁用wordpress的自动任务,这很好。例如,我通过以下操作更改了pdf上载的常用上载路径:
//change the normal path
update_option(\'upload_path\',\'wp-content/uploads/attachments/\'.$id);
//upload the file
$upload = wp_upload_bits($pdffile,null,file_get_contents($pdffile_temp));
//get the standard path back
update_option(\'upload_path\',\'\');
现在我想对wordpress自动调用的“wp unique filename”函数做同样的处理。就像我临时更改此特定上载例程的路径一样,如果目标文件夹中的另一个文件具有相同的名称,我不想重命名该文件(我宁愿用新文件覆盖旧文件)。
我怎么能那样做?
非常感谢。