Created
March 8, 2018 17:46
-
-
Save gareth-gillman/b2788c3f481eb1585975093598d06f43 to your computer and use it in GitHub Desktop.
WordPress Preconnect Google Fonts
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
function gg_gfonts_prefetch() { | |
echo '<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>'; | |
echo '<link rel="preconnect" href="https://fonts.googleapis.com/" crossorigin>'; | |
} | |
add_action( 'wp_head', 'gg_gfonts_prefetch' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment