-
-
Save INDIAN2020/46a281bfbbab5ab7f27c924790549f96 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