Created
November 29, 2019 11:08
-
-
Save vanaf1979/188c4c1fb6f61e7313b40003d847754c to your computer and use it in GitHub Desktop.
This file contains 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 optimize_style_tags( $html , $handle , $href , $media ) { | |
return "<link rel='stylesheet' id='{$handle}' href='{$href}' media='{$media}' />" . "\n"; | |
} | |
add_filter('style_loader_tag', 'optimize_style_tags', 10, 4); | |
function optimize_script_tags( $tag , $handle , $src ) { | |
return "<script id='{$handle}' src='{$src}'></script>" . "\n"; | |
} | |
add_filter('script_loader_tag', 'optimize_script_tags', 10, 3); | |
?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment