How to change the WordPress default media folder
By default, your WordPress upload folder is located at wp-content/uploads. Every time, you upload an image, your image will be uploaded to wp-content/uploads. You can change this default location by modifying your wp-config.php file:
Find:
require_once(ABSPATH . 'wp-settings.php');
Add the following code before the above line:
define('UPLOADS', 'yourNewImagesPath');
Now, every time you upload an image within your WordPress admin dashboard, your image will be saved at your new location.
Like This Post:
Leave a Reply