Skip to content

Instantly share code, notes, and snippets.

@jlengstorf
Created May 16, 2012 20:11
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 jlengstorf/2713566 to your computer and use it in GitHub Desktop.
Save jlengstorf/2713566 to your computer and use it in GitHub Desktop.
Adds a query string so that modifying the stylesheet requires a style update.
<?php
$stylesheet = get_bloginfo( 'stylesheet_url' ) . '?'
. filemtime( get_stylesheet_directory() . '/style.css');
?>
<link rel="stylesheet" type="text/css" media="all"
href="<?php echo $stylesheet; ?>" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment