How do I upload a file to wordpress using a custom upload form?

I don’t want to use WordPress’ built in media uploader.

I have a form (on the frontend) of my site, and I need to allow anyone to upload an image to my uploads folder in wp-content. I’ve found many tutorials, but they all tell me how to do it with the wordpress uploader. I need to be able to validate what users are uploading.

Read More

Any help is greatly appreciated!!!

Thanks.

Related posts

Leave a Reply

2 comments

  1. Solved. This is the code I used to do it:

    In my code:

    require_once(ABSPATH . "wp-admin" . '/includes/image.php');
    require_once(ABSPATH . "wp-admin" . '/includes/file.php');
    require_once(ABSPATH . "wp-admin" . '/includes/media.php');
    
    $attachment_id = media_handle_upload('file-upload', $post->ID);
    

    In my form:

    <input type="file" name="file-upload" id="file-upload" />