Skip to content

Instantly share code, notes, and snippets.

@Shoora
Forked from andxbes/fix_Autoptimize.php
Created January 3, 2024 16:22
Show Gist options
  • Save Shoora/d3f39a540475562cdaa99a2343ba7fae to your computer and use it in GitHub Desktop.
Save Shoora/d3f39a540475562cdaa99a2343ba7fae to your computer and use it in GitHub Desktop.
Исправление lazyload Autoptimize
<?php
add_filter('autoptimize_filter_imgopt_lazyload_cssoutput', function($string) {
ob_start();
?>
<script>document.getElementsByTagName("head")[0].insertAdjacentHTML("beforeend","<?= $string ?>");</script>
<?php
return ob_get_clean();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment