idearia / wordpress-cache-busting
Selectively invalidate browser cache in WordPress
1.2
2023-05-18 14:41 UTC
Requires
- php: ^7.0|^8.0
This package is auto-updated.
Last update: 2025-02-18 18:46:56 UTC
README
Invalidate the browser cache of CSS e JS files loaded via wp_enqueue_script and wp_enqueue_style.
The cache can be invalidated in one of two ways;
- statically, specifying a fixed value for the
ver
query parameter, - dynamically, setting 'ver' with the timestamp of the last file change (uses
filemtime()
).
You need to choose the desired way at the asset level configuring the $this->assets array in the main class.
Inspired by https://www.recolize.com/en/blog/wordpress-cache-busting-design-changes/
# Install
With Composer v2 or higher:
composer require idearia/wordpress-cache-busting
If you do not want to use Composer, just include the src/CacheBuster.php file.
Example
class CacheBuster extends \Idearia\WordPressCacheBusting\CacheBuster { protected $assets = [ /** * Example of dynamic cache invalidation */ [ 'handle' => 'some-script-or-css', 'path' => 'wp-content/plugins/some-plugin/script.js', ], /** * Example of static cache invalidation */ [ 'handle' => 'some-other-script-or-css', 'ver' => '1.2.3', ], ]; } new CacheBuster;