Skip to content

Instantly share code, notes, and snippets.

@tjhole
Created November 6, 2014 09:49
Show Gist options
  • Save tjhole/a3a7d4a5fd7164dbd68e to your computer and use it in GitHub Desktop.
Save tjhole/a3a7d4a5fd7164dbd68e to your computer and use it in GitHub Desktop.
WORDPRESS: Change Media CDN
function my_cdn_upload_url() {
return 'http://static.domain.com/content/uploads';
}
add_filter( 'pre_option_upload_url_path', 'my_cdn_upload_url' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment