Skip to content

Instantly share code, notes, and snippets.

@slaffko1
Forked from gareth-gillman/functions.php
Created December 7, 2021 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slaffko1/ecf13f3492fd7bbaa3e982270a984f56 to your computer and use it in GitHub Desktop.
Save slaffko1/ecf13f3492fd7bbaa3e982270a984f56 to your computer and use it in GitHub Desktop.
WordPress Preconnect Google Fonts
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