Created
January 10, 2018 19:19
-
-
Save kopiro/4dd9886eb3374d53c999d829bb6369f4 to your computer and use it in GitHub Desktop.
Filter wordpress uploads
This file contains 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 | |
add_filter('wp_get_attachment_url', function($url) { | |
if (getenv('USE_S3_UPLOADS')) { | |
$url = 'https://' . getenv('AWS_S3_BUCKET') . '.s3.amazonaws.com' . str_replace(WP_CONTENT_URL, '', $url); | |
} | |
return $url; | |
}); | |
add_filter('wp_calculate_image_srcset', function($sources) { | |
if (getenv('USE_S3_UPLOADS')) { | |
foreach ($sources as &$s) { | |
$s['url'] = 'https://' . getenv('AWS_S3_BUCKET') . '.s3.amazonaws.com' . str_replace(WP_CONTENT_URL, '', $s['url']); | |
} | |
} | |
return $sources; | |
}); | |
add_filter('the_content', function($content) { | |
if (getenv('USE_S3_UPLOADS')) { | |
$content = preg_replace( | |
"~https?\:\/\/www.site.com\/wp-content\/uploads~", | |
'https://' . getenv('AWS_S3_BUCKET') . '.s3.amazonaws.com/uploads', | |
$content | |
); | |
} | |
return $content; | |
}, PHP_INT_MAX); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment