Last active
December 17, 2020 09:41
-
-
Save FutureMedia/78ba041a6b73522c1e641da64f2e9c11 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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