Tagged Questions
0
votes
1answer
14 views
Why do I get undefined function export_wp()?
I'm trying to create a function in functions.php or a plugin to generate an export via a cronjob, similar to how Chris_O did this question. However it seems that I can't call export_wp(), I keep ...
1
vote
1answer
125 views
Merging PHP download script into `functions.php`
I run a large mixtape download site on WordPress. I'm currently developing a new theme and I'd like to include as much site functionality into the theme's functions.php.
For serving the downloads, I ...
0
votes
2answers
785 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 ...