Skip to content

Instantly share code, notes, and snippets.

@BurlesonBrad
Last active November 15, 2019 19:24
Show Gist options
  • Save BurlesonBrad/16235119af045f45e35ce1d30c255085 to your computer and use it in GitHub Desktop.
Save BurlesonBrad/16235119af045f45e35ce1d30c255085 to your computer and use it in GitHub Desktop.
Gravatar Prefetch
//* 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