-
-
Save jeff-kilbride/7477e9b95ffa05f3318b6f7a50db658d 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