Skip to content

Instantly share code, notes, and snippets.

@dgowrie
Created July 22, 2016 19:30
Show Gist options
  • Select an option

  • Save dgowrie/d166a3804c9e9fa21a28b166700172cd to your computer and use it in GitHub Desktop.

Select an option

Save dgowrie/d166a3804c9e9fa21a28b166700172cd to your computer and use it in GitHub Desktop.
WordPress Plugin: Remote Uploads Directory
<?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