Last active
December 17, 2020 09:41
-
-
Save FutureMedia/04b06e47f41c8e218fbb11c5bd593b60 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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