Last active
November 4, 2017 19:29
-
-
Save FutureMedia/5965b3c08494a78189ca8e87c37a8d63 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 theme version & make it a named constant | |
$theme_data = wp_get_theme(); | |
define( 'THEME_VERSION', $theme_data->Version ); | |
// 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