Created
June 16, 2020 11:05
-
-
Save artikus11/9d27bdbe73c6e6d2a8133c03316fa6d4 to your computer and use it in GitHub Desktop.
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
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