• Resolved vpsinghbe

    (@vpsinghbe)


    If I uploaded 1000 of zip files in upload folder. With that zip file 1000 post have to be created.
    Post title as zip file name.

    Content default already saved..

    • This topic was modified 3 years, 4 months ago by vpsinghbe.
Viewing 1 replies (of 1 total)
  • Plugin Author Nazmul Sabuz

    (@nazsabuz)

    Hi @vpsinghbe!

    Thanks for your query. Yes, it’s possible. I have added the following hooks in v1.0.7. Please wait for the update. Thanks!

    add_action('wp_dropzone_before_upload_file', function($file) {
    	error_log(print_r($file,1));
    });
    add_action('wp_dropzone_after_upload_file', function($file) {
    	error_log(print_r($file,1));
    });
    add_action('wp_dropzone_after_insert_attachment', function($attachment_id) {
    	error_log(print_r($attachment_id,1));
    });
Viewing 1 replies (of 1 total)
  • The topic ‘Is it possible to create a new post from mass uploaded files’ is closed to new replies.