Adding style version number to css call.
authorSteve Sutton <steve@gaslightmedia.com>
Tue, 21 Jun 2016 11:59:50 +0000 (07:59 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Tue, 21 Jun 2016 11:59:50 +0000 (07:59 -0400)
add v=1.0.0 to make it easier to cache bust later

header.php

index 96c204b..88c67b8 100644 (file)
@@ -4,7 +4,7 @@
     <meta charset="utf-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <title><?php wp_title(); ?></title>
-    <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css">
+    <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css?v=1.0.0">
     <link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/favicon.ico">  
     <?php wp_head(); ?>
   </head>