Skip to content

Instantly share code, notes, and snippets.

@FutureMedia
Last active December 17, 2020 09:41
Show Gist options
  • Save FutureMedia/04b06e47f41c8e218fbb11c5bd593b60 to your computer and use it in GitHub Desktop.
Save FutureMedia/04b06e47f41c8e218fbb11c5bd593b60 to your computer and use it in GitHub Desktop.
<?php
//
//
function css_js_versioning() {
add_filter( 'style_loader_src', 'set_custom_ver_css_js', 9999 ); // css files versioning
add_filter( 'script_loader_src', 'set_custom_ver_css_js', 9999 ); // js files versioning
}
add_action('init', 'css_js_versioning');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment