Skip to content

Instantly share code, notes, and snippets.

@charlesroper
Forked from flashvnn/template.php
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save charlesroper/c33aea75b2c7f38ad2f2 to your computer and use it in GitHub Desktop.
Save charlesroper/c33aea75b2c7f38ad2f2 to your computer and use it in GitHub Desktop.
<?php
/**
* Implements template_process_html().
*/
// Remove Query Strings from CSS filenames (CacheBuster)
function MYTHEME_process_html(&$vars) {
$vars['styles'] = preg_replace('/\.css\?[^"]+/','.css', $vars['styles']);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment