I have been struggling with a site that I inherited from another developer.
My main problem is that, changes I make in the css file of the template don't get picked up right away, indicating that some kind of caching is kicking in. What I checked is.
- The .htaccess file for any caching directive.
- Any caching WordPress plugins that might be activated.
- Any caching functionality implemented by the hoster.
- Cloudflare or any other CDN.
- [EDIT] I have tried different browsers and computers so the caching is server side.
As you can imagine none of the above is enabled and yet my changes to the css take some hours to be seen.
I am not a WordPress expert in any way, so I am asking the community of what other caching mechanism I might missing here.
Thanks
I have been struggling with a site that I inherited from another developer.
My main problem is that, changes I make in the css file of the template don't get picked up right away, indicating that some kind of caching is kicking in. What I checked is.
- The .htaccess file for any caching directive.
- Any caching WordPress plugins that might be activated.
- Any caching functionality implemented by the hoster.
- Cloudflare or any other CDN.
- [EDIT] I have tried different browsers and computers so the caching is server side.
As you can imagine none of the above is enabled and yet my changes to the css take some hours to be seen.
I am not a WordPress expert in any way, so I am asking the community of what other caching mechanism I might missing here.
Thanks
Share Improve this question edited Nov 15, 2018 at 11:56 pierostz asked Nov 15, 2018 at 11:19 pierostzpierostz 1033 bronze badges 7 | Show 2 more comments1 Answer
Reset to default 1You could change the file version each time the file gets updated. To do this, go to your functions.php
file and find where the style-sheet is being enqueued (or registered) - it will look something like:
wp_enqueue_style( 'theme-style', get_template_directory_uri() . '/style.css' );
and change it to:
wp_enqueue_style( 'theme-style', get_template_directory_uri() . '/style.css', array(), filemtime( get_template_directory_uri() . '/style.css' ) );
This will change the file version each time you save it, forcing the new version to get loaded.
As you very correctly pointed out, the styles have to be properly added in functions.php
, not hard-coded in header.php
or elsewhere.
wp_enqueue_style( 'theme-style', get_template_directory_uri() . '/style.css' );
and change it towp_enqueue_style( 'theme-style', get_template_directory_uri() . '/style.css', array(), filemtime( get_template_directory_uri() . '/style.css' ) );
. This will change the file version each time you save it, forcing the new version to get loaded. – Bob Commented Nov 16, 2018 at 10:59