Last active
November 15, 2019 19:24
-
-
Save BurlesonBrad/16235119af045f45e35ce1d30c255085 to your computer and use it in GitHub Desktop.
Gravatar Prefetch
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
//* Adding DNS Prefetching | |
function gucci_dns_prefetch() { | |
echo '<meta http-equiv="x-dns-prefetch-control" content="on"> | |
<link rel="dns-prefetch" href="//fonts.googleapis.com" /> | |
<link rel="dns-prefetch" href="//fonts.gstatic.com" /> | |
<link rel="dns-prefetch" href="//0.gravatar.com/" /> | |
<link rel="dns-prefetch" href="//2.gravatar.com/" /> | |
<link rel="dns-prefetch" href="//1.gravatar.com/" />'; | |
} | |
add_action('wp_head', 'gucci_dns_prefetch', 0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment