Skip to content

Instantly share code, notes, and snippets.

@artikus11
Created June 16, 2020 11:05
Show Gist options
  • Save artikus11/9d27bdbe73c6e6d2a8133c03316fa6d4 to your computer and use it in GitHub Desktop.
Save artikus11/9d27bdbe73c6e6d2a8133c03316fa6d4 to your computer and use it in GitHub Desktop.
function preload_fonts() {
$preload = "<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin />\n";
$preload .= sprintf(
'<link rel="preload" as="style" href="%1$s" />%2$s',
$this->get_add_query_arg( $this->font_args, $this->font_url ),
"\n"
);
$preload .= sprintf(
'<link rel="stylesheet" href="%1$s" media="print" onload="this.media=\'all\'" />%2$s',
$this->get_add_query_arg( $this->font_args, $this->font_url ),
"\n"
);
$preload .= sprintf(
'<noscript><link rel="stylesheet" href="%1$s"/></noscript>%2$s',
$this->get_add_query_arg( $this->font_args, $this->font_url ),
"\n"
);
echo $preload;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment