Created
July 22, 2016 19:30
-
-
Save dgowrie/d166a3804c9e9fa21a28b166700172cd to your computer and use it in GitHub Desktop.
WordPress Plugin: Remote Uploads Directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Remote Uploads Directory | |
| Author: David Gowrie | |
| */ | |
| add_filter('upload_dir', 'remote_media_upload_dir'); | |
| function remote_media_upload_dir( $upload ) { | |
| $upload['baseurl'] = 'https://wpmeijerahy2.build.webershandwick.com/wp-content/uploads'; | |
| return $upload; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment