-
-
Save muks999/fcb7291b6c03b3eeb28dc6dc0625ba95 to your computer and use it in GitHub Desktop.
Parallelize downloads across hostnames for WordPress. Useful to boost static resources load speed on websites. Recommended by GTmetrix, Pingdom, Google Speed Insights, and others.
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 | |
/****** | |
Parallelize downloads across hostnames for WordPress. | |
Useful to boost static resources load speed on websites. | |
Recommended by GTmetrix, Pingdom, Google Speed Insights, and others. | |
See full post > https://medium.com/p/32e9dc2fec0c | |
In order to work properly, all subdomains/hostnames MUST have the same structure/path. Ex: | |
http://mydomain.com/wp-content/uploads/2015/11/myimage.jpg | |
http://media1.mydomain.com/wp-content/uploads/2015/11/myimage.jpg | |
http://media2.mydomain.com/wp-content/uploads/2015/11/myimage.jpg | |
Add to functions.php | |
******/ | |
function parallelize_hostnames($url, $id) { | |
$hostname = par_get_hostname($url); //call supplemental function | |
$url = str_replace(parse_url(get_bloginfo('url'), PHP_URL_HOST), $hostname, $url); | |
return $url; | |
} | |
function par_get_hostname($name) { | |
$subdomains = array('media1.mydomain.com','media2.mydomain.com'); //add your subdomains here, as many as you want. | |
$host = abs(crc32(basename($name)) % count($subdomains)); | |
$hostname = $subdomains[$host]; | |
return $hostname; | |
} | |
add_filter('wp_get_attachment_url', 'parallelize_hostnames', 10, 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment