great plugin, love it! -cuts down on the page loading time.
just wanted to let you know that i had some problems with the gd-star-rating plugin. The relative paths to the pictures in the css files didn't work so i wanted to exclude that css file and found this little bug in your code:
preg_match('/href=[\'"]([^\'"]+)/', $link_tag, $href_match);
if ( $href_match[1] ) {
// do not include anything in excluded list
$skip = false;
foreach ($wpm_options['css_exclude'] as $exclude_pat) {
if ( strpos($src_match[1], $exclude_pat) !== false ) {
last line should be changed to
if ( strpos($
href_match[1], $exclude_pat) !== false ) {
Regards,
Stefan