When you enqueue the style, you can use filemtime()
as the version:
<?php
add_action('wp_enqueue_scripts', 'wpse_367594_enqueue_version');
function wpse_367594_enqueue_version() {
wp_enqueue_style(
// Update this to your slug.
'style-slug',
// Update to your stylesheet URL if it's not the main style.css.
get_stylesheet_directory_uri() . '/style.css',
// Include dependencies here or pass an empty array.
array('theme-dependency'),
// Here's the line that sets the version.
filemtime( get_stylesheet_directory() . '/style.css' ),
'screen'
);
}
?>
That should bust most layers of caching so visitors see the latest version whenever the file is updated.
Related Posts:
- How to insert spaces/tabs in text using HTML/CSS
- How to change btn color in Bootstrap
- Failed to decode downloaded font, OTS parsing error: invalid version tag + rails 4
- How to make the HTML link activated by clicking on the
- ?
- How do I right align div elements?
- How would you make two s overlap?
- CSS text-align not working
- How can I insert vertical blank space into an html document?
- What is the difference between “screen” and “only screen” in media queries?
- How to have an anim gif on a link and play it on hover and reset
- How can I make Bootstrap columns all the same height?
- Align text to the bottom of a div
- How to make a
- display in a horizontal row
- CSS3 Scale Animation Keyframes
- JavaFX css themes
- How can I apply styles to multiple classes at once?
- Responsive Canvas in Bootstrap column?
- How do you avoid caching during development?
- Are there Gutenberg container blocks?
- How do i use fontawesome icons in TinyMce editor?
- Get parent category class in post_class()
- Why won’t child theme’s style.css override plugin’s css
- some things in child theme css not overriding parent
- Is it possible to create a full width row in WordPress’s editor window? [closed]
- How do I find (index) file in order to change style on CSS?
- Enqueue style for Password Reset page
- How to center a video [closed]
- How to change header & footer to full width? [closed]
- If post by specific role different css to everyone
- removing my underline from hyperlinks
- How to override Gutenberg admin CSS
- WordPress stripping out BR tags, need assistance
- Media library style not loading correctly when selecting a page featured image?
- Use wp_add_inline_style to add code to before wp_head?
- why enqueued styles in header.php shows in footer?
- Redoing home page but changes not taking effect
- Add fields in customization tab to change background colours of certain classes
- Responsive Author Style in BBpress?
- Correct way to output styles gathered from theme or plugin settings?
- Remove extra white space bellow and above product short description in storefront woocommerce
- Get a blank line after div by simply leaving an empty line in the editor
- Edit css for search results page
- Archive pages have smaller font then the rest of my website [closed]
- How to stop my themes CSS changing the WordPress interface/?
- CSS not applying in admin
- loading a custom stylesheet in a function
- Changing blog style [closed]
- How do I use inline styling with WordPress?
- WordPress address URL and bloginfo
- node.js and webpack throws error when trying to setup node to watch theme folder for saved changes
- My CSS suddenly doesn’t load anymore [closed]
- Is there a way to add new div class via a theme’s Additional CSS interface?
- How can I move my custom css to the very bottom of the head section?
- Wrong image path within inline styles in the head
- Long post titles don’t move to next line
- How to not load stylesheet and how to load a second stylesheet on a page
- WordPress Caption Formatting
- Plugins not showing up for custom template
- The Global Styles missing
- Invert porfolio item order
- WordPress CSS completely broken on IIS
- WordPress Sudden Loss of All CSS And Tons of JQuery Errors
- Can’t find a tag to style
- How to show address in one row?
- Custom CSS on mobile
- Removing Image Links from Custom Post Type
- Add inline CSS to login page with wp_add_inline_style
- Set version number in child’s style.css file
- Cannot add a class to metabox
- How to make a sidebar form show at the top of page on mobile?
- I want to transfer my additional css code to my theme file–?
- WordPress changing content:”” to content: "
- How to customize Metaboxes?
- Change image using only CSS [closed]
- theme RTL make big white space in mobile mode and you need to scroll to see the site
- Logo Keeps Changing to the Default for Transparent Settings
- Content going full width even though container is not
- I want to change change the arrangement of the grid of posts displayed by the theme on the Search page (read the description for better understanding)
- Custom Plugin CSS: Can’t update them!
- Align divs in a basic WordPress site
- Can’t center post thumbnail with bootstrap [closed]
- Altering the design of WooCommerce notifications [closed]
- How can I override an existing custom CSS rule for a specific page
- How can I add this specific link hover effect to a WP site? [closed]
- HTML5/CSS3 Polyfill for wp-login.php
- Bizarre WordPress CSS update problem
- Making a custom CSS per mobile
- Style tag on wp_footer
- Display current category without an active link in wp_list_categories
- Outputting the blogposts or the_content()
- WordPress with PageLines theme: how to change the background color of a page? [duplicate]
- Apply Classes to post text inside editor
- Twenty Twelve theme: remove margins
- Parent style messing up with Bootstrap [closed]
- s2member captcha how to make responsive – css or javascript
- How to define a special character to change the style of my inline code?
- Why is the “Additional CSS” section missing in my theme Customizer?
- Is there a way to edit the fonts of headings without a plugin (in the 2022 theme)?
- How to include Elementor CSS in custom php file [closed]
- What is unsafe about this CSS?