Skip to content

Instantly share code, notes, and snippets.

@kamalinfo
Last active December 16, 2017 07:36
Show Gist options
  • Save kamalinfo/006c1d1dbb2e6015b5f11eb048c3224f to your computer and use it in GitHub Desktop.
Save kamalinfo/006c1d1dbb2e6015b5f11eb048c3224f to your computer and use it in GitHub Desktop.
<?php
add_filter('style_loader_tag', 'themeName_remove_type_attr', 10, 2);
add_filter('script_loader_tag', 'themeName_remove_type_attr', 10, 2);
function themeName_remove_type_attr($tag, $handle) {
return preg_replace( "/type=['\"]text\/(javascript|css)['\"]/", '', $tag );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment