Removing it will simplify the UI with just a check box for year/month folder organization. In this post we will show you how to change the default media upload location in WordPress 3.5.
Note: This tutorial is not for beginners. Use it only if you know what you are doing.
In order to change the default media upload location, you need to edit the
wp-config.php file located in the root directory of your WordPress installation. If you want upload directory to be wp-content/files then you will need to place the following code in wp-config.php 1 | define( 'UPLOADS', 'wp-content/'.'files' ); |
If you want the upload directory to be outside wp-content, like http://www.example.com/files/ then you need to set upload path in wp-config.php like this:
1 | define( 'UPLOADS', ''.'files' ); |
Remember you can still choose whether or not you want uploaded files to be organized in month/year folders in Settings » Media.
Hopefully you found this article to be helpful! If you have any questions, feel free to leave a comment below.
source: wpbeginner.com

0 comments:
Post a Comment