Skip to content

Instantly share code, notes, and snippets.

@vahidd
Last active October 5, 2016 20:10
Show Gist options
  • Select an option

  • Save vahidd/1ae6b0dd2d2596f035bb5119b34cf6cf to your computer and use it in GitHub Desktop.

Select an option

Save vahidd/1ae6b0dd2d2596f035bb5119b34cf6cf to your computer and use it in GitHub Desktop.
WordPress dynamic file version based on file content
<?php
add_action( 'wp_enqueue_scripts', function () {
$fileURI = trailingslashit( get_template_directory_uri() ) . 'styles.css';
$filePath = trailingslashit( get_template_directory() ) . 'styles.css';
// Or wp_enqueue_style
wp_enqueue_script(
'some-script',
$fileURI,
array(), // Script dependencies
hash_file( 'md5', $filePath )
);
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment