$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>theme development - Which cache is kicking|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

theme development - Which cache is kicking

matteradmin6PV0评论

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.

  1. The .htaccess file for any caching directive.
  2. Any caching WordPress plugins that might be activated.
  3. Any caching functionality implemented by the hoster.
  4. Cloudflare or any other CDN.
  5. [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.

  1. The .htaccess file for any caching directive.
  2. Any caching WordPress plugins that might be activated.
  3. Any caching functionality implemented by the hoster.
  4. Cloudflare or any other CDN.
  5. [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
  • It's likely just your browser. Do you see the changes if you use a different browser, or use private browsing? – Jacob Peattie Commented Nov 15, 2018 at 11:49
  • I should have pointed that out. I tried different browsers, computers and all. The caching is server side. – pierostz Commented Nov 15, 2018 at 11:55
  • So what file are you editing exactly? Just style.css, or something else? – Jacob Peattie Commented Nov 15, 2018 at 12:51
  • style.css located in my theme folder. I am sure that is the one used for styling through Developers Tools, therefore the changes I make there are visible after a while – pierostz Commented Nov 15, 2018 at 15:25
  • You 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. – Bob Commented Nov 16, 2018 at 10:59
 |  Show 2 more comments

1 Answer 1

Reset to default 1

You 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.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far