The option to change the upload folder for images is gone on version 3.5, any way to make it visible again or a workaround ?
From this core ticket:
Changing the
upload_path
andupload_url_path
options are pretty dangerous. They have the potential to break quite a bit of things, not to mention they have the potential of simply not working.
[…]
There’s really no good reason to showupload_path
orupload_url_path
in the UI unless the values are other than the default (wp-content/uploads
or ” forupload_path
, and ” forupload_url_path
). With that, most of a section disappears, leaving just year/month folder organization.
In addition to what Joseph suggested, you can also define the upload path in the
wp-config.php
file like this:If you’d like it outside the
wp-content
folder, specify path like this:For uploading to a folder like
example.com/images
, use this code:You can find it at
/wp-admin/options.php
, which lists all options alphabetically. It’ll be near the bottom.You can rename your
uploads
directory in two ways:wp-config.php
Here I explained both the ways. Just take a look at here. Also you can rename
wp-content
directory.