Skip to content

Instantly share code, notes, and snippets.

@Fliktrax
Created August 11, 2017 12:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fliktrax/dfcf7e2a0d2d263aeed9fe4fbd7d45a1 to your computer and use it in GitHub Desktop.
Save Fliktrax/dfcf7e2a0d2d263aeed9fe4fbd7d45a1 to your computer and use it in GitHub Desktop.
WordPress 4.7 CDN URL
add_filter('upload_dir', 'cdn_upload_url');
function cdn_upload_url($args)
{
if (!is_admin()) {
$args['baseurl'] = 'https://your-awesome-cdn.net/wp-content/uploads';
}
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment