Any available hooks for saving images?
-
Hi,
I’m wondering if it’s possible to save images in a specific folder?
I’m using WPForms are with File Uploads I can either save to Media Library or use functions to change the save to a specific directory.
function wpf_dev_upload_root( $path ) { //Define the path for your file uploads here $path = '/home/mysitedomain/public_html/custom-dir'; return $path; } add_filter( 'wpforms_upload_root', 'wpf_dev_upload_root', 10, 1 );
However, if I select and choose to save to Media Library I am wondering is there any hook available to save the file uploads into a specific folder with Folders plugin?
Thanks,
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Any available hooks for saving images?’ is closed to new replies.