If you update your WordPress theme’s
style.css
, you may have noticed that you have to “force-reload” your site in your browser to see the changes. This is because your browser keeps a copy of the CSS cached on your hard drive. Depending on how your server is set up, it may not check for a new version of the stylesheet for a couple hours, or longer! And even if you force-reload to see the changes, visitors who have previously accessed your site may still get the old CSS. One way to solve this is to “version” your CSS file, by adding ?v=123
to the URL in the
to your stylesheet.<link rel="stylesheet" type="text/css" href="mystyle.css?v=1.1" />
This is rather a pain to have to do by hand every time, so here is a much better way:
<link rel="stylesheet" href="<?php
bloginfo('stylesheet_url'); echo '?' . filemtime(
get_stylesheet_directory() . '/style.css'); ?>" type="text/css"
media="screen, projection" />
This automatically updates the
?12345678
ending part every time you modify the file. Boom. Now everyone instantly sees your changes.
没有评论:
发表评论