Skip to content

Instantly share code, notes, and snippets.

@friedow
Created December 20, 2019 10:20
Show Gist options
  • Save friedow/52b8bfcb1782ab5460b368f236cf9390 to your computer and use it in GitHub Desktop.
Save friedow/52b8bfcb1782ab5460b368f236cf9390 to your computer and use it in GitHub Desktop.
Wordpress - enqueue styles with dynamic version
function theme_enqueue_styles() {
$stylesheet_url = get_stylesheet_directory_uri() . '/style.css';
$stylesheet_date_modified = date( 'YmdHi', filemtime( $stylesheet_url ) )
wp_enqueue_style( 'theme-slug-style', $stylesheet_url, array( 'iron-master' ), $stylesheet_date_modified, 'all' );
}
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment