The Wordpress upload directory. [Read more about `wp_upload_dir()` here](http://codex.wordpress.org/Function_Reference/wp_upload_dir).
2
votes
1answer
42 views
Images in upload folder with hexadecimal names
I'm using Wordpress 3.4.1 with the Suffusion theme 4.3.0.
I've noticed that there are a large number of images with hexadecimal names, like 54f96e1d5f478186f66bde9d6aeda625.jpeg. I'm wondering how ...
0
votes
1answer
163 views
Upload an image at frontend > Create direction and/or rename filename possible?
I have a form for a non-profit-club, that publish posts + up to 20 images. The image-path will be writen in a custom-field. Images are uploaded. Ok, now i want to rename the pictures or (much better) ...
0
votes
1answer
33 views
Is it possible to set the upload location to a different server?
Our university has given our student society a 1GB portion of storage to be used for our website. We're low on their bandwidth priority however so it did not work speedily with Wordpress.
I managed ...
0
votes
1answer
217 views
Organizing uploaded media with wp_insert_post() and wp_handle_upload according to time parameter
I'm retroactively creating a post with wp_insert_post() and attaching a featuring image to it. I need the image to go into the folder that corresponds to the post's publishing date.
I'm using time ...
0
votes
1answer
234 views
Moving existing media items to new upload path structure not updating full URL path
Have been developing a site and noticed that all of the media files were being saved in the default WP year/month/day rule in the wp-content/uploads directory. I decided to change this to assets and ...
1
vote
0answers
48 views
Upload video in custom folder
I am trying to find a system to upload some kind of media in a custom folder.
I want to keep all uploads in default wordpress folder and create a custom folder just for videos.
So i would have the ...
0
votes
0answers
41 views
Change upload directory and url
I am developing a plugin and I changed the upload directory of the v.3.5 media uploader to this: \wp-content\plugins\deixto\cle.
I used the following function and filter:
function ...
0
votes
0answers
18 views
Change default upload location on mulitsite
Ive set up a wordpress multisite, but would like to change the default location it uploads media to a remote server, but keeping the same folder structure, as in each blog has a folder.
Is this ...
0
votes
0answers
16 views
custom upload directory only for plugin uploads
i'm trying to add an upload_dir filter only for plugin-uploads. does anybody know why the code below doesn't work, and what could work instead? thanks in advance!
$upload_dir = 'publications';
...