Skip to content

Instantly share code, notes, and snippets.

@FutureMedia
Last active November 4, 2017 19:29
Show Gist options
  • Save FutureMedia/5965b3c08494a78189ca8e87c37a8d63 to your computer and use it in GitHub Desktop.
Save FutureMedia/5965b3c08494a78189ca8e87c37a8d63 to your computer and use it in GitHub Desktop.
<?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