Skip to content

Instantly share code, notes, and snippets.

@GarySwift
Last active April 27, 2017 08:42
Show Gist options
  • Save GarySwift/d68a49b27315224a8e9a382e5518a208 to your computer and use it in GitHub Desktop.
Save GarySwift/d68a49b27315224a8e9a382e5518a208 to your computer and use it in GitHub Desktop.
WordPress: Change the Default WordPress Uploads Folder (to assets)

Change the Default WordPress Uploads Folder

Open your wp-config.php file, located at the root of your WordPress installation, and add the snippet below.

Make sure you add this code after the line:

'/* That's all, stop editing! Happy blogging. */'

Make sure you add this code before the line:

'require_once(ABSPATH.’wp-settings.php’);'

<?php
# Custom changes to wp-config.php
# Change the Default WordPress Uploads Folder
define('UPLOADS', 'assets');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment