dynamic change of the upload folder
-
Hello guys,
I want to change the upload folder dynamically but I just can’t find the solution.
How can i change dynamic the folder /CUSTOMCode example in function
function changeUploadFolder( $upload ) { $upload['subdir'] = '/CUSTOM' . $upload['subdir']; $upload['path'] = $upload['basedir'] . $upload['subdir']; $upload['url'] = $upload['baseurl'] . $upload['subdir']; return $upload; } add_filter('upload_dir', 'changeUploadFolder'); ... //here the file is uploaded with the new dynamic path ... remove_filter('upload_dir', 'changeUploadFolder');
Thx for help
Alex
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘dynamic change of the upload folder’ is closed to new replies.