Это моя попытка: < /p>
Код: Выделить всё
function x_style_loader_tag($html, $handle, $href) {
$async_loading = array(
'cookie_notice'
);
if( in_array($handle, $async_loading) ) {
$script = ''.
'let s = document.createElement(\'link\'); '.
//'s.id = "'.$handle.'"; '.
's.rel = "stylesheet"; '.
's.href = "'.$href.'"; '.
's.media = "print"; '.
's.onload = "this.onload=null;this.media=\'all\'"; '.
'document.head.appendChild(s); '.
'';
$html = $script;
}
return $html;
}
add_filter('style_loader_tag', 'x_style_loader_tag', 10, 3);
Код: Выделить всё
Подробнее здесь: https://stackoverflow.com/questions/796 ... ent-to-the
Мобильная версия