Skip to content

Instantly share code, notes, and snippets.

@wp-seopress
Created August 10, 2024 13:31
Show Gist options
  • Save wp-seopress/cb74e41c761879743a2c821d3ad692e6 to your computer and use it in GitHub Desktop.
Save wp-seopress/cb74e41c761879743a2c821d3ad692e6 to your computer and use it in GitHub Desktop.
SEOPress.org async webfonts
<?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