Created
August 10, 2024 13:31
-
-
Save wp-seopress/cb74e41c761879743a2c821d3ad692e6 to your computer and use it in GitHub Desktop.
SEOPress.org async webfonts
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 | |
//Async CSS | |
add_filter('style_loader_tag', 'seopress_add_stylesheet_attributes', 10, 2); | |
function seopress_add_stylesheet_attributes($html, $handle) | |
{ | |
$styles = array( | |
'fonts', | |
'degular-font', | |
); | |
if (in_array($handle, $styles)) { | |
return str_replace("rel='stylesheet'", "rel='stylesheet' media='print' onload='this.media=\"all\"'", $html); | |
} | |
return $html; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment