1
vote
1answer
132 views

Interface for logged-in users to upload/download files

I am setting up a site for a non-profit that would like to have a 'members' area where certain users can swap files for meetings, events, etc. They essentially need a simple interface where they can ...
0
votes
2answers
615 views

delete uploaded file

I have a function wp_handle_upload() for uploads files. $file = $_FILES['attachment_icon-' . $i]; $upload = wp_handle_upload($file, array('test_form' => false)); what is a function for delete a ...
0
votes
1answer
119 views

File Upload in WordPress Template [closed]

Hi I am trying to upload a file that is contained within a form I have on a page template in WordPress. I cannot seem to upload the file to my specified directory, whether there is a special way of ...