Skip to content

Instantly share code, notes, and snippets.

@acodesmith
Created February 19, 2018 15:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acodesmith/e92dfb40cbbc108f772038f445ab0883 to your computer and use it in GitHub Desktop.
Save acodesmith/e92dfb40cbbc108f772038f445ab0883 to your computer and use it in GitHub Desktop.
Add version to WooCommerce Storefront Child Theme
<?php
add_action('wp_enqueue_scripts', function() {
global $wp_styles;
if( ! empty( $wp_styles->registered['storefront-child-style'] ) ) {
$wp_styles->registered['storefront-child-style']->ver = '0.0.1';
}
}, 40);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment