Skip to content

Instantly share code, notes, and snippets.

@FutureMedia
Last active December 17, 2020 09:41
Show Gist options
  • Save FutureMedia/78ba041a6b73522c1e641da64f2e9c11 to your computer and use it in GitHub Desktop.
Save FutureMedia/78ba041a6b73522c1e641da64f2e9c11 to your computer and use it in GitHub Desktop.
<?php
// Get the style.css timestamp & make it a named constant
$css_timestamp = filemtime( get_stylesheet_directory().'/style.css' );
define( 'THEME_VERSION', $css_timestamp );
// Use it in your enqueues
wp_enqueue_style(
'style_name',
get_stylesheet_directory_uri() . '/style.css',
array(),
THEME_VERSION
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment