CSS Optimizer
-
Hi Tiguan
Great plugin it really helps get better speed scores.
I had a problem with the inline CSS because I was already using full urls including http: in the background-image: url()
Your optimizer regular expression handles the data: protocol but not others such as http: so I was getting:
https://mydomain.com/wp-content/https://mydomain.com/wp-content/etc
Below is my fix to be less specific about the protocol because colon should never appear in a url unescaped.
I hope you can roll that into the next release. You could argue “don’t use full urls in css” but if the wordpress is not at the web root, you need to.
Thanks
Toby
/*--------------------------------------------------------------------------------------------------------
CSS OPTIMIZER - Rebuilding CSS URLs
---------------------------------------------------------------------------------------------------------*/function sbp_rebuilding_css_urls($css,$url){
$css_dir = substr($url,0,strrpos($url,'/'));
$css = preg_replace("/url\((?!\w+:)['\"]?([^\/][^'\"\)]*)['\"]?\)/i","url({$css_dir}/$1)",$css);return $css;
}
- The topic ‘CSS Optimizer’ is closed to new replies.