Hey.
In my wordpress site I have this lines in my header.php:
<link rel="stylesheet" type="text/css" media="all" href="TEMPLATE_DIRECTORY_URI/css/style.css" />
<link rel="stylesheet" type="text/css" media="all" href="TEMPLATE_DIRECTORY_URI/css/layout.css" />
<link rel="stylesheet" type="text/css" media="all" href="TEMPLATE_DIRECTORY_URI/css/header.css" />
But when the page is shown for some reason all of those style files are being concatenated and this is the code:
<link rel="stylesheet" type="text/css" media="all" href="TEMPLATE_DIRECTORY_URI/css/W.style.css+layout.css+header.css,Mcc.UlbA3qhyyg.css.pagespeed.cf.MnaoV_3g8P.css"/>
I'm not using any minification plugin and so I have no idea where and why this happens.
I have nothing against this of course, but I would like to know how to reset the content of the concatenated result.
It's not an actual file but something that is being created on request.
Any ideas?
Thanks.