Contents
- Setting a Default Theme for New WordPress Installations With WP_DEFAULT_THEME
- Enabling the "Trash" Feature for Media Files With MEDIA_TRASH
- Letting WordPress Skip the wp-content Directory While Updating With CORE_UPGRADE_SKIP_NEW_BUNDLED
- Allowing Unfiltered WordPress Uploads for Administrators With ALLOW_UNFILTERED_UPLOADS
Setting a Default Theme for New WordPress Installations With WP_DEFAULT_THEME
define( ‘WP_DEFAULT_THEME’, ‘default-theme-folder-name’ );
Enabling the “Trash” Feature for Media Files With MEDIA_TRASH
define( ‘MEDIA_TRASH’, true );
Letting WordPress Skip the wp-content Directory While Updating With CORE_UPGRADE_SKIP_NEW_BUNDLED
define( ‘CORE_UPGRADE_SKIP_NEW_BUNDLED’, true );
Allowing Unfiltered WordPress Uploads for Administrators With ALLOW_UNFILTERED_UPLOADS
define( ‘ALLOW_UNFILTERED_UPLOADS’, true );
Revisions
- April 29, 2014 @ 14:09:14 [Current Revision] by PeterLugg
- April 29, 2014 @ 14:09:14 by PeterLugg
- April 29, 2014 @ 14:05:16 by PeterLugg
No comments yet.