Last active
June 18, 2018 06:14
-
-
Save yanknudtskov/d85dad4ceda2a2c016d843e3b0542d44 to your computer and use it in GitHub Desktop.
Gravatar Prefetch Example
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
| <?php | |
| /* | |
| * Adding DNS Prefetching | |
| */ | |
| function 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', 'dns_prefetch', 0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment